I am using the Tablesorter plugin and it works great. Currently, I achieve table scrolling using a div wrapper. Is it possible to make the table scroll, keeping the headers visible while scrolling and not using any divs?
Try this CSS, adjusting the height to suit:
tbody{height: 4em; overflow: scroll}
Example: http://jsbin.com/ofice
As showed above (or this example), to be cross-browser (and any doctype) the tbody
and thead
tags need CSS display as block. If you need to show scrollbar OUTSIDE of tbody
, or need to use not-standard browsers, you need more complex solution:
The solution is to split the table's thead
and tbody
in two distinct tables, then, use a div
to control the scroll (overflow-y) of the second (tbody content) table.
Trade-offs:
Related questions:
thread
in a separate table: http://jsfiddle.net/krauss/yLGg6/1/
Note: I am answering this old post to update on the progress of TableSorter jQuery plugin.
You can use a fork of this plugin by @Mottie (http://mottie.github.io/tablesorter/docs/index.html)
Then just on DOM ready, run this script:
$('table').tablesorter({
widgets : ['zebra', 'columns', 'stickyHeaders']
});
All you have to include for this to work:
1) jquery.tablesorter.js
2) jquery.tablesorter.widgets.js
3) any of the css themes, eg: theme.blue.css
StickyHeaders widget will do the trick for you.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With