Open PVGrad opened 8 years ago
This patch is for proper positioning table header on sticky state (position: fixed) Please take into concideration that you should apply sticky like this:
HTML:
<table> <thead> <tr class="sticky"> <th>Id</th> <th>Name</th> <th>Value</th> </tr> </thead> <tbody> <tr> <td>1</td> <td>Test</td> <td>1</td> </tr> </tbody> </table>
JS: $('.sticky').sticky();
$('.sticky').sticky();
up
Hi I'm currently using this code here(table.zip) to create a table from an XML file. I added the class to the
Here's the HTML code:
otherwise
This patch is for proper positioning table header on sticky state (position: fixed) Please take into concideration that you should apply sticky like this:
HTML:
JS:
$('.sticky').sticky();