Getting row number in gridgroupinggrid

I have the record number from the filteredrecords collection and need to get the table row nubmer. I thought the sourceindex on the record would be it but it doesn''t appear to be the correct nubmer. Is there a way from either the record or the filtered record index to get the row number.

1 Reply

AD Administrator Syncfusion Team November 2, 2005 05:52 PM UTC

Try this. Get the record from the Filteredrecords collection, and then use: int position = grid.Table.Records.IndexOf(record); to get the position in the data source.

Loader.
Up arrow icon