Articles in this section
Category / Section

How to expand a particular group selectively?

1 min read

 

The IsExpanded property of a particular Goup should be set as true to make a grop expanded. Please refer the below code snippet which illustrates this:

C#

//Group by Col3

this.GridGroupingControl1.TableDescriptor.GroupedColumns.Add("Col3");

//Expand only the first group

this.GridGroupingControl1.Table.TopLevelGroup.Groups[0].IsExpanded = true;

VB

'Group by Col3

Me.GridGroupingControl1.TableDescriptor.GroupedColumns.Add("Col3")

'Expand only the first group

Me.GridGroupingControl1.Table.TopLevelGroup.Groups(0).IsExpanded = True

Sample:

http://help.syncfusion.com/support/samples/kb/Grid.Web/6.1.0.34/GGIsExpanded/IsExpanded.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied