Hello,
I need to double click in a SfDataGrid and load data in new Form.
But, I need to get RecordID value from CurrentRow, Column 1.
In Windows datagrid, it's easy:
edit.id.Text = datagrid.CurrentRow.Cells[0].Value.ToString();
But in SfDataGrid, I can't get these value.
In my SfDataGrid, the RecordID is allways the first column in DataGrid.
How can I manage this?
Thanks