Hi,
I am struggling to find an equivalent event to the generic gridview selectedrow.
I'm currently using the fowwing code, but i feel there must be a more appropriate way of completing this task.
In brief i want to use data from the radgridview selected row, something similar to this i hope;
this.radgridview1.selectedrow.cell[i].value.... etc etc
Can anyone help please?
Regards
Chris
I am struggling to find an equivalent event to the generic gridview selectedrow.
I'm currently using the fowwing code, but i feel there must be a more appropriate way of completing this task.
int selectedindex = gvOffSite.Rows.IndexOf((GridViewDataRowInfo)gvOffSite.CurrentRow);
SelectedID = (
int)gvOffSite.Rows[selectedindex].Cells["EntityID"].Value;
In brief i want to use data from the radgridview selected row, something similar to this i hope;
this.radgridview1.selectedrow.cell[i].value.... etc etc
Can anyone help please?
Regards
Chris