Hi Paurnima,
Thank you for your interest in Syncfusion products.
If you want to get the Rowindex of the particular child
table in grid, you can use GridTableModel
class. The child table model can be retrieved by using GetTableModel property of grid.
Please refer the
below code:
void
gridGroupingControl1_TableControlCellClick(object
sender, GridTableControlCellClickEventArgs
e)
{
GridTableModel gridModel = this.gridGroupingControl1.GetTableModel("Child_Table_Name");
//Specify your Child table name
int rowIndex =
gridModel.CurrentCellInfo.RowIndex;
}
Please let me know if you have any concerns.
Regards,
Neelakandan