Articles in this section
Category / Section

How to Group/Categorize a table based on a field, in the GridControl?

1 min read

 

The Grouping based on a field can be achived by 3 ways:

  • During design time adding the columns to the TableDescriptor.GridGroupedColumns collection.
  • At run time drag the columns and drop it on to the GroupDropArea.
  • The third method is through code. Please refer the below code snippet which illustrates this:

C#

//Group by Col3

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

VB

'Group by Col3

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

Sample:

https://help.syncfusion.com/support/samples/kb/Grid.Web/6.1.0.34/GGroup/Group.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