Hi,
I have a RadGrid (with Grouping and Filter buttons) displaying data. The grouping functionality is working and default value is set to expanded i.e. when I add a column to the group the individual groups are expanded).
The problem is though that when I navigate away and return the individual groups are collapsed. I have to open them up individually. Is there any way I can always get the items to be expanded? Would appreciate any comments/suggestions with in the code-behind file or in the front-end ASP.NET code
Thanks,
A.
*** ASP.NET Code as Follows:***
<telerik:RadToolBar runat="server" ID="RadToolBar1" OnButtonClick="RadToolBar1_ButtonClick">
<Items>
<telerik:RadToolBarButton CommandName="ShowGrouping" CheckOnClick="true" SkinID="GroupIcon"
Text="Show Grouping" AllowSelfUnCheck="true" Group="1" Checked="False" />
<telerik:RadToolBarButton CommandName="ShowFiltering" CheckOnClick="true" SkinID="SearchIcon"
Text="Show Filters" AllowSelfUnCheck="true" Group="2" />
</Items>
</telerik:RadToolBar>
<telerik:RadGrid ID="RadGrid1" runat="server" OnNeedDataSource="TelerikGridOnNeedDatasource"
PageSize="50" DataSourceID="dsTypeActions" AllowPaging="True" PagerStyle-AlwaysVisible="true" AutoGenerateColumns="False" AllowSorting="True">
<MasterTableView DataSourceID="dsTypeActions" AllowCustomSorting="True" OverrideDataSourceControlSorting="true" GroupsDefaultExpanded="True">
<Columns>
<telerik:GridBoundColumn DataField="Name" HeaderText="Name1" UniqueName="Name">
</telerik:GridBoundColumn>
<telerik:GridBoundColumn DataField="Address" HeaderText="Address1" UniqueName="Address">
</telerik:GridBoundColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
</asp:View>