Thursday 31 July 2008

Fixed Table Header in a Scrollable GridView

Set the style of the header row as follows.  The GridView should be placed in a div with style overflow:auto.

table th
{
border-width: 4px;
border-color: Black;
background-color: Gray;
position: relative;
top: expression(this.parentNode.parentNode.
parentNode.scrollTop-1);
}

No comments: