Hi
I have a master/detail ASP.NET setup with a grid in the middle cell of the master/detail setup. Below is the setup of the grid. When I drag a column up to be grouped, the grid shrinks from a horizontal scrollable grid to one where all the columns are shrunk so that they fit without scrolling. Searched high and low for the necessary setting but to no avail.
Before and after images attached
Help appreciated
I have a master/detail ASP.NET setup with a grid in the middle cell of the master/detail setup. Below is the setup of the grid. When I drag a column up to be grouped, the grid shrinks from a horizontal scrollable grid to one where all the columns are shrunk so that they fit without scrolling. Searched high and low for the necessary setting but to no avail.
Before and after images attached
Help appreciated
<telerik:RadGrid ID="RadGridData" runat="server" AllowFilteringByColumn="True" AllowSorting="True" GridLines="None" ShowGroupPanel="True" AllowPaging="True" onneeddatasource="RadGridData_NeedDataSource" PageSize="25" ShowStatusBar="True" ViewStateMode="Enabled"> <MasterTableView Width="100%" Height="100%"> </MasterTableView> <ClientSettings AllowDragToGroup="True" AllowAutoScrollOnDragDrop="False"> <Scrolling AllowScroll="True" UseStaticHeaders="True" SaveScrollPosition="true" /> </ClientSettings> <MasterTableView> <RowIndicatorColumn> <HeaderStyle Width="20px"></HeaderStyle> </RowIndicatorColumn> <ExpandCollapseColumn> <HeaderStyle Width="20px"></HeaderStyle> </ExpandCollapseColumn> </MasterTableView> <HeaderContextMenu EnableAutoScroll="True"></HeaderContextMenu> </telerik:RadGrid>