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.

Reply via email to