5 Answers, 1 is accepted
Generally it is not recommended to work with the visual elements. Since the RadGridView supports UI Virtualization, its cells are reused on scrolling and that is why we cannot rely on them. I would advise you to work with the bound data item instead. May I ask you to share more details on why do you need this information. What is your final goal?
Didie
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Thanks for the reply.
I want to control the tab navigation in the Rad gridview. Is it possible for me to change which cell should be selected for editing when row selection is changed. The default behavior of the gird is such that if i am editing 3rd cell in 3rd row and then i change the row selection to 2nd row and press tab, then 4h cell of the grid becomes editable instead of the 1st cell in 2 row. I want this behavior. Is it possible.
Regards
Atin
You could set the CurrentColumn to be the first one once RowEditEnded event is raised. That way the first cell will go into edit mode.
All the best,Didie
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.

Is there a way to identify row index in that event?
Regards
Atin Grover
You could get the row index like so:
private
void
GridView1_RowEditEnded(
object
sender, GridViewRowEditEndedEventArgs e)
{
RadGridView myGrid = sender
as
RadGridView;
var index = myGrid.Items.IndexOf(e.EditedItem);
}
Didie
the Telerik team
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.