Hello friends,
In ASP.NET GridViews we have a property called SelectedRow, this property allows selected a item or colum value, for example:
Grid with columns:
Name Surname
Jhon Hills
Patrick Miller
When I selec the first column I want get the selected surname
for do this we need do follow:
string Surname = GridView1.SelectedRow.Cells[1].Text;
Response.Write(Surname);
//Ouput:
Hills
But In radGrid we don't have this property, anyone knows how can I do this????
Thanks and regards,
Luis
In ASP.NET GridViews we have a property called SelectedRow, this property allows selected a item or colum value, for example:
Grid with columns:
Name Surname
Jhon Hills
Patrick Miller
When I selec the first column I want get the selected surname
for do this we need do follow:
string Surname = GridView1.SelectedRow.Cells[1].Text;
Response.Write(Surname);
//Ouput:
Hills
But In radGrid we don't have this property, anyone knows how can I do this????
Thanks and regards,
Luis