This question is locked. New answers and comments are not allowed.
HI,
In my application, i want to send the current cell in edit mode.
For that, in CurrentCellChange event I made the NewCell in edit mode
void RadGirdView1_CurrentCellChanged(object sender, GridViewCurrentCellChangedEventArgs e)
{
e.NewCell.IsInEditMode = true;
}
It was working fine in Q2,2009 but in Q3,2009,
when I click in different cell on every click next cell goes in edit mode till it reaches the cell I am clicking in.
So, If I click first cell on grid load and after that start clicking in last cell of grid. every cell goes in edit mode one-by-one.
Is there any fix for it?
Rgds
Alfa