AD
Administrator
Syncfusion Team
July 6, 2004 03:46 PM UTC
Jason,
you can loop through the groups by iterating through groupingGrid.Table.TopLevelGroup.Groups.
For each group that has IsExpanded = true you can get the Category and store it in an array.
Once you have reloaded the grid, you can then loop through that array of category keys and for each key do a find using groupingGrid.Table.TopLevelGroup.Groups.FindGroup(categoryKey). FindGroup returns an index that can be passed into groupingGrid.Table.TopLevelGroup.Groups[index]. With that group you could then set IsExpanded = true.
Stefan