Hi,
Is there any way that the height of the grid will self adjust to the screen resolution each user when it is filled automatically (AutoGenerateColumns="True")?
This is the code of my grid:
<telerik:RadGrid ID="grdReport" runat="server" AllowPaging="true" AutoGenerateColumns="True"
BorderWidth="1px" GridLines="None"
OnPageIndexChanged="grdReport_PageIndexChanged" PageSize="10"
onitemdatabound="grdReport_ItemDataBound" >
<PagerStyle AlwaysVisible="true"
FirstPageToolTip="<%$ Resources:WebDexon, FirstPage %>"
LastPageToolTip="<%$ Resources:WebDexon, LastPage %>" Mode="NextPrevAndNumeric"
NextPagesToolTip="<%$ Resources:WebDexon, NextPages %>"
NextPageToolTip="<%$ Resources:WebDexon, NextPage %>"
PagerTextFormat="<%$ Resources:WebDexon, PagerTextFormat %>" Position="Bottom"
PrevPagesToolTip="<%$ Resources:WebDexon, PrevPages %>"
PrevPageToolTip="<%$ Resources:WebDexon, PrevPage %>" Visible="true" />
<clientsettings scrolling-allowscroll="true" scrolling-usestaticheaders="true" Resizing-AllowColumnResize="true" Resizing-ClipCellContentOnResize="false">
<Scrolling AllowScroll="True" UseStaticHeaders="True"></Scrolling>
</clientsettings>
<statusbarsettings loadingtext="<%$ Resources:WebDexon, Loading %>"
readytext="<%$ Resources:WebDexon, Ready %>" />
<mastertableview nodetailrecordstext="" nomasterrecordstext="" Height="90%">
<HeaderStyle Width="200px" />
</mastertableview>
</telerik:RadGrid>
Is there any way that the height of the grid will self adjust to the screen resolution each user when it is filled automatically (AutoGenerateColumns="True")?
This is the code of my grid:
<telerik:RadGrid ID="grdReport" runat="server" AllowPaging="true" AutoGenerateColumns="True"
BorderWidth="1px" GridLines="None"
OnPageIndexChanged="grdReport_PageIndexChanged" PageSize="10"
onitemdatabound="grdReport_ItemDataBound" >
<PagerStyle AlwaysVisible="true"
FirstPageToolTip="<%$ Resources:WebDexon, FirstPage %>"
LastPageToolTip="<%$ Resources:WebDexon, LastPage %>" Mode="NextPrevAndNumeric"
NextPagesToolTip="<%$ Resources:WebDexon, NextPages %>"
NextPageToolTip="<%$ Resources:WebDexon, NextPage %>"
PagerTextFormat="<%$ Resources:WebDexon, PagerTextFormat %>" Position="Bottom"
PrevPagesToolTip="<%$ Resources:WebDexon, PrevPages %>"
PrevPageToolTip="<%$ Resources:WebDexon, PrevPage %>" Visible="true" />
<clientsettings scrolling-allowscroll="true" scrolling-usestaticheaders="true" Resizing-AllowColumnResize="true" Resizing-ClipCellContentOnResize="false">
<Scrolling AllowScroll="True" UseStaticHeaders="True"></Scrolling>
</clientsettings>
<statusbarsettings loadingtext="<%$ Resources:WebDexon, Loading %>"
readytext="<%$ Resources:WebDexon, Ready %>" />
<mastertableview nodetailrecordstext="" nomasterrecordstext="" Height="90%">
<HeaderStyle Width="200px" />
</mastertableview>
</telerik:RadGrid>