Declined
Last Updated: 28 Oct 2016 12:39 by ADMIN
ADMIN
Stefan
Created on: 23 Aug 2016 08:52
Category: GridView
Type: Feature Request
0
GridView: Selection is lost when the MovePageDown Command is called in edit mode

		
2 comments
ADMIN
Dilyan Traykov
Posted on: 28 Oct 2016 12:39
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();
ADMIN
Dilyan Traykov
Posted on: 28 Oct 2016 12:38
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.