Grouping in the ASP.NET Datagrid

Hi, I able to view the data in the grid grouped by a column, but the problem is that all the group details are collapsed and have to click ''expand'' on each one of the group headers to see the details. Is there any way we can see all group header''s details at a time. I mean can we see the all groups expanded. Thanks, Kalyan

1 Reply

AD Administrator Syncfusion Team May 13, 2005 12:30 PM UTC

You can do so as follows in your Page_Init: if(this.IsPostBack == false) { this.GridGroupingControl1.Table.ExpandAllGroups(); } -Praveen

Loader.
Up arrow icon