Hallo!
I have a read only ultrawingrid.
I open a new form to make new entries. When I close this form (saving the entry first wioth new GUID) I want to set the new entered row as active row and select the first cell of this row.
How can I do this?
Thank you
Best regards
Marco
That's fine. Thank you!
Handle the AfterRowInsert event:
grid.ActiveRow = e.Row;
grid.PerformAction(UltraGridAction.ActivateCell);
grid.PerformAction(UltraGridAction.ToggleCellSel);