AD
Administrator
Syncfusion Team
May 28, 2004 10:47 AM UTC
Following code searches for the group that matches the category "Germany" and expands that group. Before the expansion of that one group, all groups are collapsed. Try the code with the "Grid\Samples\Grouping\GroupCustomers" example.
this.groupingGrid1.Table.CollapseAllGroups();
GridGroup group = (GridGroup) this.groupingGrid1.Table.TopLevelGroup.Groups["Germany"];
group.IsExpanded = true;
Stefan