Details
-
Bug
-
Status: Resolved
-
Minor
-
Resolution: Fixed
-
1.4.3
-
None
Description
The tables generated by DataTable component in the current version of Wicket (1.4.3) do not contain <thead> in the output HTML.
It was working correctly in wicket 1.4.0 but there were some changes to fix other issues - see WICKET-2436
To replicate - launch the wicket-examples-1.4.3.war and look at the DataTable example:
http://localhost:8081/wicket-examples-1.4.3/repeater/?wicket:bookmarkablePage=:org.apache.wicket.examples.repeater.DataTablePage
If you check the HTML source you will see it does not contain thead tag:
<table class="dataview" cellspacing="0">
<tr class="navigation">{html}
When you look at http://www.wicket-library.com/wicket-examples/repeater/?wicket:bookmarkablePage=:org.apache.wicket.examples.repeater.DataTablePage
it shows:
<table class="dataview" cellspacing="0">
<thead>
<tr class="navigation">{html}
Must be a previous version?
Attachments
Issue Links
- is a clone of
-
WICKET-2546 DataTable does not generate "thead" tag
- Resolved
- is duplicated by
-
WICKET-2627 DataTable generates two <thead wicket:id="topToolbars">
- Closed