I have a RadGrid with a single row per record. I wish to take the selected ID and populate a second grid control with extended data. How do I access the row data that is selected from code behind?
I have an event that triggers when the person pushes select:
}
The problem is I don't know how to access say the column named "FirstName"? All I want to do is Debug write the first name selected to the console but I can't seem to get access. I've tried various GridDataItem calls and conversions from code I can find on the web but nothing I found shows a simple straightforward way to traverse the row data selected.
Any help would be appreciated. :)
I have an event that triggers when the person pushes select:
protected
void RadGrid1_SelectedIndexChanged(object sender, EventArgs e)
{
}
The problem is I don't know how to access say the column named "FirstName"? All I want to do is Debug write the first name selected to the console but I can't seem to get access. I've tried various GridDataItem calls and conversions from code I can find on the web but nothing I found shows a simple straightforward way to traverse the row data selected.
Any help would be appreciated. :)