Hi,
I have issue relating to hierarchical Rad Grid Horizontal Scrolling in below given code.
Actually i have added 20 columns in child grid but i'm able to see only 14 columns (based on screen REsolution) , rest of the columns are inside that grid. If i get scrolling to that Child grid then i'm able to see those columns properly. But there are no property to enable scrolling for detailed Table view. Ultimately Horizontal scrolling is not at all working for Parent Grid also. Can you suggest me how to Enable Horizontal Scrolling
I have issue relating to hierarchical Rad Grid Horizontal Scrolling in below given code.
<telerik:RadGrid ID="gvFilteredResults1" runat="server" ShowStatusBar="True" AutoGenerateColumns="False" AllowSorting="True" AllowPaging="True" OnDetailTableDataBind="gvFilteredResults_DetailTableDataBind" AllowCustomPaging="True" OnPageIndexChanged="gvFilteredResults_OnPageIndexChanged" OnPageSizeChanged="gvFilteredResults_OnPageSizeChanged" OnPreRender="gvFilteredResults_OnPreRender" Skin="Office2007" OnSortCommand="gvFilteredResults1_OnSortCommand" meta:resourcekey="gvFilteredResults1Resource1" GridLines="None"> <MasterTableView AllowMultiColumnSorting="True" DataKeyNames="Policy Number" GridLines="Horizontal"> <DetailTables> <telerik:GridTableView runat="server" AllowCustomPaging="False" AllowPaging="False" AutoGenerateColumns="True" BorderWidth="1px" GridLines="Both" meta:resourceKey="GridTableViewResource1" Name="TransactionWise" AllowSorting="False" Width="95%"> </telerik:GridTableView> </DetailTables> <ExpandCollapseColumn Visible="True"> </ExpandCollapseColumn> <Columns> <telerik:GridTemplateColumn meta:resourcekey="GridTemplateColumnResource1" UniqueName="TemplateColumn"> <ItemTemplate> <asp:CheckBox ID="chkPolicyNumber" runat="server" meta:resourceKey="chkPolicyNumberResource1" /> </ItemTemplate> <HeaderStyle Width="3%" /> </telerik:GridTemplateColumn> <telerik:GridBoundColumn DataField="Policy Number" HeaderText="Policy Number" meta:resourcekey="GridBoundColumnResource4" UniqueName="Policy Number"> </telerik:GridBoundColumn> </Columns> </MasterTableView> <ClientSettings> <Scrolling AllowScroll="True" UseStaticHeaders="True" /> </ClientSettings> <PagerStyle AlwaysVisible="True"></PagerStyle> </telerik:RadGrid>Actually i have added 20 columns in child grid but i'm able to see only 14 columns (based on screen REsolution) , rest of the columns are inside that grid. If i get scrolling to that Child grid then i'm able to see those columns properly. But there are no property to enable scrolling for detailed Table view. Ultimately Horizontal scrolling is not at all working for Parent Grid also. Can you suggest me how to Enable Horizontal Scrolling