Hi,
Could you please provide solution / sample project for the following issue?
Issue : I need to change focus to Next Cell AND go to EDIT Mode of this Cell when pressing ENTER Key
My Trials : I tried
this.ExecuteCommand(DataPresenterCommands.CellNextByTab);
this.ExecuteCommand(DataPresenterCommands.StartEditMode );
but NO luck
Thanks,
Hello,
You can do this like so:
xamDataGrid1.ExecuteCommand(
DataPresenterCommands.CellNext);
xamDataGrid1.ExecuteCommand(DataPresenterCommands.StartEditMode);
Another thing you should have in mind is that this will oonly work if you have a focused cell.
Hope this helps.
Sincerely,
Petar Monov,
DS Engineer,
Infragistics Bulgaria