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?
|
6
|
|||||
|
|
|
Here's another possibility in this other SO question--not quite the same, but perhaps useful. |
|||
|
|
|
|
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... |
||
|
|
|
|
Give this a try http://www.codeproject.com/KB/webforms/FreezePaneDatagrid.aspx |
||
|
|
|
|
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. |
||
|
|
|
This one works in FF and IE5+ : |
||||||
|
|
|
I found this which seems to work in FireFox and Internet Explorer 7. |
||||||||
|
|
|
And the CSS:
Obviously you would probably have other CSS rules, but I believe thats all you need. |
||
|
|
|
|
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! |
||
|
|
|
|
there's lots of examples out there. |
||||||||
|
|
|
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:
|
||||
|
