I am learning programming language Asp.net. I want to know about the open source GridView Extension with scroll & fixed header? It should work on different browsers too. Any help would be appreciated.
I am learning programming language Asp.net. I want to know about the open source GridView Extension with scroll & fixed header? It should work on different browsers too. Any help would be appreciated.
You can use a 2nd DataGrid for header & put it over the first one.
The gridview could be placed in a scrolling DIV area.
Code:<table>...<table> <div style="width: 300px; height: 300px; overflow: auto;"> gridview </div>
Following style in your code and give the gridview or datagrid header style css.
Code:.fixedHeader { font-weight:normal; position:absolute; background-color: #ffffff; color: #ffffff; height: 20px; top: expression(Sys.UI.DomElement.getBounds(document.ge tElementById("panelContainer")).y-20); }
Bookmarks