In the below code i am able to see the another grouping only after i click the expand symbol which makes the postback n shows up the sub groups.
ex: Once clicked the category expand symbol it makes the postback n shows up sub group (here its name). i want it by default every thing should be displayed in collapsed mode.
Thanks a million in advance.,
ex: Once clicked the category expand symbol it makes the postback n shows up sub group (here its name). i want it by default every thing should be displayed in collapsed mode.
| <telerik:RadGrid ID="RadGrid1" runat="server" DataSourceI="SqlDataSource1" |
| GridLines="None" |
| AllowPaging="false" PageSize="25" |
| Skin="Outlook" DataSourceID="SqlDataSource1"> |
| <MasterTableView DataSourceID="SqlDataSource1"> |
| <GroupByExpressions> |
| <telerik:GridGroupByExpression > |
| <SelectFields> |
| <telerik:GridGroupByField |
| FieldName="Category" HeaderText=""/> |
| </SelectFields> |
| <GroupByFields> |
| <telerik:GridGroupByField |
| FieldName="Category" /> |
| </GroupByFields> |
| </telerik:GridGroupByExpression> |
| <telerik:GridGroupByExpression > |
| <SelectFields> |
| <telerik:GridGroupByField |
| FieldName="Name" HeaderText=""/> |
| </SelectFields> |
| <GroupByFields> |
| <telerik:GridGroupByField |
| FieldName="Name" /> |
| </GroupByFields> |
| </telerik:GridGroupByExpression> |
| </GroupByExpressions> |
| </MasterTableView> |
| <ClientSettings ReorderColumnsOnClient="True" AllowDragToGroup="false" AllowColumnsReorder="false"> |
| <Selecting AllowRowSelect="false"></Selecting> |
| </ClientSettings> |
| </telerik:RadGrid> |