when the cell get the focus,it can not be edited right now,It must be clicked by mouse then it can be input,I want to the current cell can accept input when it's active cell.
could you help me on it? thanks!
grid.DisplayLayout.Override.CellClickAction = CellClickAction.EditAndSelectText
Sorry for telling all , I have written below code in the ultraGrid1_InitializeLayout event,so that the cursor enter the nextcell(or nextrow) after user pressing the Enter Key
this.ultraGrid1.KeyActionMappings.Add(new Infragistics.Win.UltraWinGrid.GridKeyActionMapping(System.Windows.Forms.Keys.Enter, Infragistics.Win.UltraWinGrid.UltraGridAction.NextCell, Infragistics.Win.UltraWinGrid.UltraGridState.IsCheckbox, 0, 0, 0));