Is there a way to move either to the next cell on the right, or to the cell below when the enter key is pressed on the Ultra Win Grid?
You could add a key mapping for the 'NextCellByTab' action (which is what the tab key does by default), and specify the Enter key as its keyCode:
GridKeyActionMapping mapping = new GridKeyActionMapping(Keys.Enter, UltraGridAction.NextCellByTab, (UltraGridState)0, UltraGridState.InEdit, SpecialKeys.All, (SpecialKeys)0 );this.ultraGrid.KeyActionMappings.Add( mapping );
the second iamge for navigation within cells will be like