I am writing a page where I need an html table to maintain a set size. I need the headers at the top of the table to stay there at all times but I also need the body of the table to scroll no matter how many rows are added to the table. Think a mini version of excel. This seems like a simple task but almost every solution I have found on the web has some drawback. Does someone have a good solution?
|
|
I had to find the same answer. The best example I found is http://www.cssplay.co.uk/menu/tablescroll.html - I found example #2 worked well for me. You will have to set the height of the inner table with Java Script, the rest is CSS. |
|||||||||||||||||
|
|
I found the DataTables jQuery plugin quite flexible. |
|||||||
|
|
I saw Sean Haddy's excellent solution to a similar question and took the liberty of making some edits:
Sean did the heavy lifting, though. Thanks to Matt Burland, too, for pointing out need to support tfoot. Please see for yourself at http://jsfiddle.net/jhfrench/eNP2N/ |
|||||||||
|
|
Have you tried using thead and tbody, and setting a fixed height on tbody with overflow:scroll? What are your target browsers? EDIT: It worked well (almost) in firefox - the addition of the vertical scrollbar caused the need for a horizontal scrollbar as well - yuck. IE just set the height of each td to what I had specifed the height of tbody to be. Here's the best I could come up with:
|
|||||||||||||||
|
|
Check this one out... the developers claim that they work in "all major browsers"... That is to say IE 6+ , FF and webkit browsers... Gonna try it myself now... Will get back to you soon... |
|||
|
|
|
This one works in FF and IE5+ : |
|||||||
|
|
Not sure if anyone is still looking at this but they way I have done this previously is to use two tables to display the single original table - the first just the original table title line and no table body rows (or an empty body row to make it validate). The second is in a separate div and has no title and just the original table body rows. The separate div is then made scrollable. The second table in it's div is placed just below the first table in the HTML and it looks like a single table with a fixed header and a scrollable lower section. I have only tested this in Safari, Firefox and IE (latest versions of each in Spring 2010) but it worked in all of them. The only issue it had was that the first table would not validate without a body (W3.org validator - XHTML 1.0 strict), and when I added one with no content it causes a blank row. You can use CSS to make this not visible but it still eats up space on the page. |
|||
|
|
Try this http://s7u.blogspot.com/2010/08/fixed-header-footer-table.html, This has updated version which works fine in IE, Chrome, FF. |
|||
|
Bad newsUnfortunately there is no elegant way to handle scrollable table with fixed ExplanationsAlthough HTML 4.01 Specification says
But the working scrollable table feature on FF 3.6 has been removed in FF 3.7 because considered as a bug because not compliant with HTML/CSS specifications. See this and that comments on FF bugs. Mozilla Developer Network tipBelow is a simplified version of the MDN tips for scrollable table:
However MDN also says this does not work any more on FF :-( |
||||
|
|
|
This caused me huge headaches trying to implement such a grid for an application of ours. I tried all the various techniques out there but they each had problems. The closest I came was using a jQuery plugin such as Flexigrid (look on http://www.ajaxrain.com for alternatives), but this doesn't seem to support 100% wide tables which is what I needed. What I ended up doing was rolling my own; Firefox supports scrolling Sorry if this answer sounds a bit vague in places; I'm writing quickly as I don't have much time. Leave a comment if you want me to expand any further! |
|||
|
|
Give this a try http://www.codeproject.com/KB/webforms/FreezePaneDatagrid.aspx |
|||
|
|
|
Here's a code that really works for IE and FF (at least):
I've changed the original code to make it clearer and also to put it working fine in IE and also FF.. Original code HERE |
|||||
|
|
Here's my alternative. It also uses different DIVs for the header, body and footer but synchronised for window resizing and with searching, scrolling, sorting, filtering and positioning: Click on the Jazz, Classical... buttons to see the tables. It's set up so that it's adequate even if JavaScript is turned off. Seems OK on IE, FF and WebKit (Chrome, Safari). |
||||
|
|
|
Sorry I haven.t read all replies to your question. Yeah here the thing you want (I have done already) You can use two tables, with same class name for similar styling, one only with table head and another with your rows. Now put this table inside a div having fixed height with overflow-y:auto OR scroll. |
|||
|
|
|
Here's another possibility in this other SO question--not quite the same, but perhaps useful. |
||||
|
|
|
I ended up going with this solution, which requires neither extra tables nor javascript: |
|||
|
|
|
If its ok to use JavaScript here is my solution Create a table set fixed width on all columns (pixels!) add the class Scrollify to the table and add this javascript + jquery 1.4.x set height in css or style! Tested in: Opera, Chrome, Safari, FF, IE5.5(Epic script fail), IE6, IE7, IE8, IE9
Edit: Fixed height. |
||||
|
|
|
The main problem I had with the suggestions above was being able to plug in tablesorter.js AND being able to float the headers for a table constrained to a specific max size. I eventually stumbled across the plugin jQuery.floatThead which provided the floating headers and allowed sorting to continue to work. It also has a nice comparison page showing itself vs similar plugins. |
|||
|
|
|
I do this with javascript (no library) and CSS - the table body scrolls with the page, and the table does not have to be fixed width or height, although each column must have a width. You can also keep sorting functionality. Basically:
Here's the javascript and a jsFiddle DEMO.
|
|||||
|

