-
Scrollbars problem
Hello,
I'm losing my head working with scrollbars...
There is table in page, which has head row, and second row with three colums.
|-------------------|
|______Head_______|
| col1 | col2| col3 |
|_____|_____|_____|
The head and col1 must be always viewable - when scrooling it (must be fixed and not to scoll).
To solve this problem I used div tags with style OVERFLOW:auto in col2 and col3.
Everything works fine, but then there is more data in col2 or col3 and I scroll it, after post back position of div's scrollbars are reseted.
Any suggestions?
PS. Sorry for my poor english.
-
Re: Scrollbars problem
Try substituting the standard overflowing divs with a .Net component that will keep track of scrolling positions over postbacks.
The one I use is available at http://metabuilders.com/Tools/ScrollingPanel.aspx
HTH
DJ
-
Re: Scrollbars problem
Thanks dj4uk. It works great!