Completed
Last Updated: 11 Jan 2016 13:01 by Svetlin
Svetlin
Created on: 15 Jan 2013 01:54
Category: GridView
Type: Bug Report
0
FIX. RadGridView - keyboard row navigation is wrong, when the CellValidating event is canceled in virtual mode.
Workaround: use the CellEndEdit event to work around the navigation issue: 

private void CellEndEdit(object sender, GridViewCellEventArgs e)
{
    this.grid.CurrentRow = null;
    this.grid.CurrentRow = e.Row;
}
0 comments