I'm trying to activate one cell into AfterCellUpdate event, for example. The code i use is:
this.i3UltraGrid1.ActiveCell = this.i3UltraGrid1.ActiveRow.Cells["cantidad"];
But the active cell when running is the next column not the desired column. In fact i have tried with this code in a lot of events but i get
ever the same result: the cell activated is the next cell in the grid not the desired.
So it sounds like for one reason or another you're not able to exit edit mode on that other cell. You could try calling "this.ultraGrid1.PerformAction(UltraGridAction.ExitEditMode);" to force the other cell out of edit mode first.
-Matt
I'm in editmode on another cell and the new cell where i want to move allow activation.
Does that cell's column allow activation? It sounds like the grid is trying to activate that cell but something is preventing it from doing so. Are you in edit mode on another cell and it's in an invalid state?