Saturday, March 19, 2011

GridView With ScrollBars

GridView still have not ScrollBars property. To create GridView with horizontal or vertical scrollbar you need to place GridView inside
tag or inside Panel control.



GridView inside div  HTML tag


To produce GridView scrollbars with div tag, use this code:
<div style="width:100%height:300overflow:auto;">
<asp:GridView ID="GridView1" runat="server">
asp:GridView>
div>

GridView inside Panel Control


To create GridView scrollbars with a little help of Panel control, use this code:
<asp:Panel ID="Panel1" runat="server" ScrollBars="Both" Height="300"Width="100%">
 <asp:GridView ID="GridView1" runat="server">
 asp:GridView>
asp:Panel>

No comments:

Post a Comment