Thanks, works like a charm. I use my own sorting in my IBasicTableModel implementation.
On 6/10/05, Mind Bridge <[EMAIL PROTECTED]> wrote: > Hi, > > I am not sure the requested rendering can possibly work if you have sorting, > but here you go: > > You can use the lower level table components (TableView, etc) and define > your own layout as a result. An example of that is in the LocaleList > component in the Workbench. > > For example: > > <table jwcid="@contrib:TableView" source="..." columns="..."> > > <tr> > <td colspan="..."> > <span jwcid="[EMAIL PROTECTED]:TableFormPages"/> > </td> > </tr> > <tr> > <td jwcid="@contrib:TableColumns"/> > </tr> > > <span jwcid="@contrib:TableFormRows" row="ognl: currentRow" > element="span"> > <span jwcid="@Conditional" condition="ognl: showTitle"> > <tr> > <td colspan="..."><span jwcid="Insert" value="ognl: titleText"/></td> > </tr> > </span> > > <tr> > <td jwcid="@contrib:TableValues"/> > </tr> > </span> > > </table>
