Fixed Header-Footer-Column Attributes For Tables

Hi,

This issue is one of the main pain points of web application developers for years. There are lots of JavaScript, CSS workarounds that don't work as wanted.
(Most of the solutions don't work with horizontal scrollbar). Grid solutions with "div" don't scale well with large data.

Fixed table header-footer is that it will stay at top when we scroll vertically. When horizontal scrolling it should move with other table columns.
Fixed column is that it will stay at left when we scroll to the rigth horizontally.

<table>
<thead fixed>
	<th fixed></th>
	<th></th>
</thead>

<tbody>
	<td></td>
	<td></td>
</tbody>

<tfoot fixed>
	<td></td>
	<td></td>
</tfoot>
</table>

Best regards.

Received on Thursday, 18 September 2014 11:06:08 UTC