Hi,
The cell can be edited by using a single click.
Regards,
One approach would be to set the CellClickAction to CellSelect or RowSelect and use the DoubleClickCell event to put the cell into edit mode, such as:
private void ultraGrid1_DoubleClickCell(object sender, DoubleClickCellEventArgs e){ e.Cell.Activate(); this.ultraGrid1.PerformAction(UltraGridAction.EnterEditMode);}
-Matt