Is there any way to control the order of which the GridView control renders it's thead
, tbody
and tfoot
child elements?
According to W3C, the correct order is:
- thead
- tfoot
- tbody
The GridView control renders out:
- thead
- tbody
- tfoot
I am extending the GridView control, and I'm using the "first column controls the width of all columns" approach. But if the W3C specifications are not met (thead
-> tfoot
-> tbody
) all hell breaks loose.
I've been reading up on this issue, and it seems that the GridView control has no support for this yet--it's planned though. Even so; I bet there must be some way to counter this sketchy implementation.
Any and all help apreciated.