up vote 8 down vote favorite
8
share [g+] share [fb]

How can I create a table that has its first row and first column both locked, as in Excel, when you activate 'freeze panes'? I need the table to both scroll horizontally and vertically (a lot of solutions for this exist, but only allow vertical scrolling).

So, when you scroll down in the table, the first row will stay put, since it will have the column headings. This may end up being in a thead, or it may not, whatever makes the solution easier.

When you scroll right, the first column stays put, since it holds the labels for the rows.

I am pretty certain this is impossible with CSS alone, but can anyone point me toward a javascript solution? It needs to work in all major browsers.

Thanks in advance!

link|improve this question

Hi, I know this is a bit old, but did you get a working solution to this? The answer marked as correct now has broken links. I'm trying to find out the same thing here: stackoverflow.com/questions/743663/… – Damovisa Apr 13 '09 at 12:40
I just tried the links in the accepted answer, and they worked for me. Are you still having trouble? – pkaeding Apr 14 '09 at 17:00
feedback

7 Answers

up vote 2 down vote accepted

Like this? Like this? More information is available on the accompanying blog post.

link|improve this answer
This works! I wish the explanation were more detailed, though - for example, "so it is possible to adjust the size of the cells in the different tables with JavaScript" is all we get about the JS being used. – Nathan Long Nov 17 '08 at 19:37
The "Like This" link is broken. Does anyone have a working sample of this? Thanks! – Hcabnettek Aug 13 '09 at 1:24
3  
Both links are dead, so this answer doesn't work anymore. – rox0r Nov 12 '10 at 19:09
6  
LINKS ARE DEAD. Could you rather post their main content here so this question+answer can at least be a helpful to the rest of us? – Robert Koritnik Jan 3 '11 at 18:14
2  
@Robert Koritnik the link was dead but you can recover it with a little investigation: cubido.at/blogs/Lists/Posts/Post.aspx?ID=1259 just – Eineki Feb 17 '11 at 9:52
show 5 more comments
feedback

You need two tables, where the first one is an exact overlay over the second one. The second one contains all the data, where the first one just contains the first column. You have to synchronize it's width and depending on the content also the height of it's rows.

Additional to this two tables, you need a third one. That's the first row, which lays exactly between the other two and has to be synchronized in the same way.

You will need absolute positioning here. Next, you would synchronize the scrolling of the data table with the scrolling positions of the head row and first column table.

That works very well in all major browsers, except for one issue: The synchronized scrolling will flutter. To fix that, you need two outher div containers that hold a clone of the content of the header row and the first column. When scrolling vertically, you display the header row clone to prevent fluttering, while you reposition the original in the background. When scrolling horizontally, you would show the first row clone. Same thing here.

link|improve this answer
This is way more complex than I originally wanted to go, but ultimately, it was what I ended up doing (more or less). It seems like this should be a lot easier than it is.... – pkaeding Apr 14 '09 at 17:02
I agree it seems overly complicated but I can not find any other solution for this. – Nicholas Kreidberg Oct 19 '09 at 19:09
feedback

I ran across a site a few weeks back. This is a working example of the first column locked but it is not browser compatible with Firefox. I didn't do a lot of checking around but it seems it only works in IE. There are some notes the author provided along with it that you can read.

Lock the First column: http://home.tampabay.rr.com/bmerkey/examples/locked-column-csv.html

Let me know if you need the Javascript to lock the Table headers too.

Ponchai

link|improve this answer
feedback

Sort and Lock Table is the only solution I have seen which does work on other browsers than IE. (although this "locked column css" might do the trick as well)

link|improve this answer
Yeah, that works for vertical scrolling, but not for horizontal scrolling. That is the common solution I mentioned in the question. – pkaeding Nov 17 '08 at 17:06
Thank you for the comment. I keep this answer in community mode for reference. – VonC Nov 17 '08 at 17:45
This solution has a major advantage over some of the others, which is that the table structure is still intact and makes sense. For locking only the headers it is possibly the best possible solution. – Mr. Shiny and New 安宇 Jan 29 '09 at 14:26
Thank you for the comment Mr. Shiny and New. May be this deserves a little bump (+1 in vote) after all ? (Note: this is a community post, no rep gain for me) – VonC Jan 29 '09 at 14:50
feedback

You'd have to test it but if you embedded an iframe within your page then used CSS to absolutely position the 1st row & column at 0,0 in the iframe page would that solve your problem?

link|improve this answer
Unless I'm misunderstanding you, I don't think that would allow the headings to update when the data is scrolled (ie, scroll the row headings down when the data scrolls down so the row headings still correspond to the appropriate rows). – pkaeding Nov 17 '08 at 19:17
feedback

How about a solution where you put the actual "data" of the table inside its own div, with overflow: scroll;? Then the browser will automatically create scrollbars for the portion of the "table" you do not want to lock, and you can put the "table header"/first row just above that <div>.

Not sure how that would work with scrolling horizontally though.

link|improve this answer
Yeah, that works for vertical scrolling, but not for horizontal scrolling. That is the common solution I mentioned in the question. – pkaeding Nov 17 '08 at 17:05
feedback

I've posted my jQuery plugin solution here: http://stackoverflow.com/questions/486576/frozen-table-header-inside-scrollable-div/1533619#1533619

It does exactly what you want and is really lightweight and easy to use.

link|improve this answer
This doesn't seem to support locking the first column. Or am I missing something? If not, then this solution is no better than the 'common' solution I mentioned in the question. – pkaeding Oct 7 '09 at 21:29
I've updated my demo page with locking the first column demo. – Mark Nov 3 '09 at 20:04
feedback

Your Answer

 
or
required, but never shown

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