We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

How to get RowId or RowNo in the extrasection of the Grouping Grid

Hi,

Could you pls tell me how to display different customized values in the extra section of the grouping grid.

OR

How to get rowId of the rows in the extra section of the groupingrid?


Thanks,
Ejaz

1 Reply

AD Administrator Syncfusion Team December 8, 2006 12:00 PM UTC

Hi Ejaz,
Please try this code snippet in this[C:\Program Files\Syncfusion\Essential Studio\Version Number\windows\Grid.Grouping.Windows\Samples\CustomSectionInGroup] sample and let us know if this helps.

private void gridGroupingControl1_TableControlCellClick(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlCellClickEventArgs e)
{
if(e.Inner.RowIndex>0 && e.Inner.ColIndex>0)
{
Console.WriteLine("RowIndex="+e.Inner.RowIndex);
Console.WriteLine("ColIndex="+e.Inner.ColIndex);
}
}

Thanks for choosing and using Syncfusion Products.
Best Regards,
Jeba.

Loader.
Live Chat Icon For mobile
Up arrow icon