Edit grid cell contents without double-clicking?

Is it possible to enable editing of grid cell contents/selection from listbox without having to double-click? Our customers find it completely undiscoverable to understand what can be edited and what cannot, particularly in the case of listboxes, which aren’t displayed until the user double-clicks on the cell.

Thanks

Couldn’t you explain what way you need to open an editor?

For example you can enable opening the editor by a single clicking on a cell:

mygrid.attachEvent(“onRowSelect”, function(id,ind){
mygrid.editCell();
});

It may be worth noting that due to a possible bug in version 3.0 (110707), the onRowSelect event isn’t triggered by clicking another cell on the currently selected row.

You should go with version 2.6 or earlier if you decide to use the onRowSelect solution.