I have a grid that has scrolling and grouping enabled. Also, sorting, filtering and paging is enabled.
<telerik:RadGrid ID="RadGrid1" DataSourceID="datasource1" runat="server" Width="97%"
PageSize="20" AllowSorting="True" Skin="Office2007" AllowPaging="True"
ShowGroupPanel="True" GridLines="None" AllowFilteringByColumn="True">
<PagerStyle Mode="NextPrevNumericAndAdvanced"></PagerStyle>
<MasterTableView CommandItemDisplay="None" CurrentResetPageIndexAction="SetPageIndexToFirst"
DataSourceID="CTK" Dir="LTR" Frame="Border" TableLayout="Auto" Width="100%" GroupLoadMode="Client" >
....
<ClientSettings ReorderColumnsOnClient="True" AllowDragToGroup="True"
AllowColumnsReorder="True" >
<Scrolling AllowScroll="True" UseStaticHeaders="True" >
</Scrolling>
</ClientSettings>
When I drag a column to group,the grouping does occur but the horizontal scroll is lost, and all columns widths are shrunk to fit.
Is there a way to maintain the column widths and maintain horizontal scroll after grouping?
I would appreciate if someone could help me with this.
Thanks,
Tal