How to make Cell editable on Single Click I dont want to us

By default the cell can be made editable on double clicking . How to make Cell  editable on Single Click I dont want to use enablelightmouse navigation as it is too flimsy and sensitive and when i right click for the context menu to get invoked the control goes somewhere  

You can control edit actions by
    mygrid.enableEditEvents(
it allows to select which event will be used to activate edit. To allow edit only by single click you can use next
    mygrid.enableEditEvents(true,false,false);

( this command mutual exclusive with light-mouse-navigation mode )

Yes got it thanks for the answer