HA
haneefm
Syncfusion Team
April 20, 2007 09:13 PM UTC
Hi Ashok,
You can handle the TableDescriptor.GroupedColumn.Changed event of the grid and use e.Index to get the level of the group. Here is a code snippet.
private void GroupedColumns_Changed(object sender, Syncfusion.Collections.ListPropertyChangedEventArgs e)
{
if( e.Action == Syncfusion.Collections.ListPropertyChangedType.Insert)
{ SortColumnDescriptor column = e.Item as SortColumnDescriptor;
Console.WriteLine( "Grouped column Index:::"+ e.Index );
}
}
Best regards,
Haneef