Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Duplicate
-
1.4.5
-
None
Description
DataTable mutiple bottom toolbars are misplaced because multiple <tfoot></tfoot> elemenst are generated. <tfoot> should be outside of the the RepeatingView.
SOLUTION:
In DataTable.html change:
-----------------------------------------------------------
<thead wicket:id="topToolbars">
<wicket:container wicket:id="toolbar"></wicket:container>
</thead>
<tfoot wicket:id="bottomToolbars">
<wicket:container wicket:id="toolbar"></wicket:container>
</tfoot>
------------------------------------------------------------
to
------------------------------------------------------------
<thead><span wicket:id="topToolbars">
<wicket:container wicket:id="toolbar"></wicket:container>
</span></thead>
<tfoot><span wicket:id="bottomToolbars">
<wicket:container wicket:id="toolbar"></wicket:container>
</span></tfoot>
------------------------------------------------------------