fix gridview header on scroll
------------------------------------------
Add the following style in your code and assign the grid view or datagrid header style css.
.fixedHeader
{
font-weight:bold;
position:absolute;
background-color: #006699;
color: #ffffff;
height: 25px;
top: expression(Sys.UI.DomElement.getBounds(document.getElementById("panelContainer")).y-25);
}
-----------------------------------------------------------------------------------------------------------------------------------------------
<asp:Panel ID="panelContainer" runat="server" Height="300px" Width="100%" ScrollBars="Vertical">
<asp:GridView ID="gvScrollableExample" runat="server">
<HeaderStyle CssClass="fixedHeader " />
</asp:GridView>
</asp:Panel>
No comments:
Post a Comment