Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
6.0.0
Description
WICKET-4690 changed the tag type to <div> for the content of DataTable cells. When a sortable column is used, this produces invalid HTML markup which can wreck css stylings.
The markup is now:
<th class="wicket_orderUp">
<a class="wicket_orderUp">
<div></div>
</a>
</th>
Note the <a> (inline element) containing a <div> (block element)
Attachments
Issue Links
- is broken by
-
WICKET-4690 DataTable - use <div> for the content
- Resolved