vote up 1 vote down star

Is there any good and light jQuery plugin out there make Scrollable Tables.

I got one at http://www.webtoolkit.info/scrollable-html-table-plugin-for-jquery.html but that won't working non-IE and non-FF browsers.

Thanks!

flag

1 Answer

vote up 6 vote down check

If you're looking for light code, skip the jQuery altogether and use pure HTML/CSS:

<table>
    <thead>
        <tr><th>Header Item 1</th><th>Header Item 2</th></tr>
    </thead>
    <tfoot>
        <tr><th>Footer Item 1</th><th>Footer Item 2</th></tr>
    </tfoot>
    <tbody style="overflow-y: scroll; overflow-x: hidden; height: 100px;">
        <tr><td>Item 1-1</td><td>Item 2-1</td></tr>
        ...
        <tr><td>Item 1-N</td><td>Item 2-N</td></tr>
    </tbody>
</table>

The key is in setting the overflow CSS in tbody, so as to make that part scrollable (but not the entire table). You'll also need to set the height, so you can define how tall the scrollable section should be.

link|flag
oh! cool that will do the trick. thanks – Saneef Feb 24 at 19:18
Keep in mind that this does not a "cross browser" compatible solution. This will not work in Internet Explorer 7 or below or Safari. – James Feb 24 at 21:00
Ugh, seriously? Yet another reason to add to the list of reasons I despise IE. Won't someone think of the standards: w3.org/TR/html401/… – Daniel Lew Feb 24 at 21:25
heh, found this via google – Allen May 11 at 21:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.