JS
Jeba S
Syncfusion Team
March 27, 2007 09:55 AM UTC
Hi Harshad,
You can try handling TableControlCellClick to get the group caption when clicking on the group cell.
private void gridGroupingControl1_TableControlCellClick(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCellClickEventArgs e)
{
Console.WriteLine(e.TableControl.GetTableViewStyleInfo(e.Inner.RowIndex, e.Inner.ColIndex).TableCellIdentity.TableCellType);
Console.WriteLine(e.TableControl.GetTableViewStyleInfo(e.Inner.RowIndex, e.Inner.ColIndex).Text);
}
Kindly let us know if this helps.
Best Regards,
Jeba.