maintain cursor

hi,
i am using grouping grid control.and i am updating cell value through a window which opens after currentcell_key _pressed occurs.
but when value is updated cursor soes not remain in cell.


so please tell me function which will maintain cursor in cell.

1 Reply

HA haneefm Syncfusion Team July 31, 2007 05:26 PM UTC

Hi Swaminath,

You can try calling the BeginEdit method to enter the edit mode in a grid after updating the currrentcell. Please try these code and let me know if this helps.

this.grid.Focus();
this.grid.CurrentCell.MoveTo(row,col);
this.grid.CurrentCell.BeginEdit();

Best regards,
Haneef

Loader.
Up arrow icon