Scrollable grid |
| sri sri replied to Partha Chakraborty at 10-May-08 02:52 |
Hi, You can make your grid as scrollable by placing the grid inside a div try the following
<div style="overflow:visible; height:100"> <asp:GridView id="grdView" runat="server"> ... .... </asp:GridView> </div>
|
|