MA
Madhankumar
Syncfusion Team
May 8, 2007 06:34 PM UTC
Hi Shek,
This can be achieved by different ways. One technique is to iterate through the groups and set the IsExpanded property to required groups. The following is the code snippet.
++++++++ Code Snippet ++++++++++
foreach (Group coll in this.gridGroupingControl1.Table.TopLevelGroup.Groups)
{
coll.IsExpanded = true;
coll.Groups[0].IsExpanded = true;
}
++++++++ Code Snippet ++++++++++
Kindly let us know if you need any further assistance.
Have a nice day.
Best regards,
Madhan