Here is an example: clubsGrid.PendingCommands.Add(RadGridViewCommands.CommitCellEdit); clubsGrid.PendingCommands.Add(RadGridViewCommands.MovePageDown); clubsGrid.PendingCommands.Add(RadGridViewCommands.SelectCurrentUnit); clubsGrid.PendingCommands.Add(RadGridViewCommands.BeginEdit); clubsGrid.ExecutePendingCommand();
This issue can be avoided by using RadGridView's PendingCommands list & calling the ExecutePendingCommand method which will ensure that all commands will be executed in the correct sequence.