Hi guys,
I am using Move row method to add the new blank row in any position of the grid, and I have already set the active scroll area in order to display the blank row in the approiate position.
However, how can I set the cell in edit mode at once?
User wants to type the data into the grid at once after adding a row (Current behaviour is user has to click the cell after add the row)
RegardsAndrew
Hi.
After adding new row:
grid.ActiveCell = newRow.Cells["YourColumnKeyOrIndex"]; //set cell to active you need.
grid.PerformAction(UltraGridAction.EnterEditMode);
Alex.