AD
Administrator
Syncfusion Team
November 16, 2006 04:14 AM UTC
Hi Gah,
Below code snippet shows you how to get the recordindex if the rowindex is known.
// Recordindex is being calculated.
GridTable table = e.TableCellIdentity.Table;
Element el = table.DisplayElements[RowIndex];
Record r = el.ParentRecord;
int RecordIndex= table.UnsortedRecords.IndexOf(r);
Best Regards,
Haneef