This happened to me when my HTML markup containing the table was little off.
Make sure your HTML enclosing the table is proper XHTML and try it in IE or
FF 3 (multiple browsers) to catch the problem.


egolan74 wrote:
> 
> Hi,
> I have a customized DataTable.
> Here's what we have in the constructor:
>               super(id, columns, dataProvider, rowsPerPage);
> 
>               
> add(HeaderContributor.forCss("/eurekify/style/EurekifyDataTable.css"));
>               add(new AttributeAppender("class", true, new 
> Model("eurekifyTable"), "
> "));
>               addTopToolbar(newNavigationToolbar());
>               addTopToolbar(newHeadersToolbar(dataProvider));
>               addBottomToolbar(new NoRecordsToolbar(this));
>               addBottomToolbar(new EurekifyBottomTableToolbar(this, 
> rowsPerPage,
> modalWindows,
>                               showSelectRecordsPerPage));
>               add(new AttributeAppender("class", true, new 
> Model("emptyTable"), " ") {
>                       private static final long serialVersionUID = 1L;
> 
>                       @Override
>                       public boolean isEnabled(Component component) {
>                               return dataProvider.size() == 0;
>                       }
>               });
> 
> More info:
> newHeadersToolbar(...) returns AjaxFallbackHeadersToolbar (which is
> HeadersToolbar)
> newNavigationToolbar(...) returns StyledAjaxNavigationToolbar which
> inherits from AjaxNavigationToolbar (which is NavigationToolbar).
> EurekifyBottomTableToolbar inherits from AbstractToolbar.
> 
> When I look at FireBug, I see that the tfoot section of the table is
> BEFORE the tbody.
> Has anyone encountered this?
> Do I do something wrong?
> 
> 

-- 
View this message in context: 
http://www.nabble.com/DataTable---tfoot-before-tbody--tp19241603p19243949.html
Sent from the Wicket - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to