Hi João,
Sorry for the inconvenience caused.
In order to get the row object from
GridDataBoundGrid as DataGridview, use the
record.Table[record.Postion] and store this to the corresponding class object. Please refer to the following code. We have also created a simple sample for your reference. In the below sample, Data is a class. By using the record.Table[record.Postion] you can get the row object and store it into Data object.
C#
GridBoundRecordState record = this.gridDataBoundGrid1.Binder.GetRecordStateAtRowIndex(rowRangeInfo.Bottom);
Data obj2 = record.Table[record.Position] as Data;
Sample:
http://www.syncfusion.com/downloads/support/forum/121683/ze/Sample-2134531030
Please let me know if you have any other concern.
Regards
Jagadeesan P.