3.2.0

Edit With Single-Click

The default functionality is to double-click a cell to edit a cell.

How can I make it so that single-clicking a cell puts you in edit mode? I saw some more complex examples in the forum where the author was asking for more than this.

How I would I simply implement a single-click-to-edit ?
Eric Juvet
June 22,
There is no 'official' method for this, the following code uses internal editCurrentCell event -

obj.onCellClicked = function(event, col, row){
    this.raiseEvent("editCurrentCell", event, col, row);
}
Alex (ActiveWidgets)
June 26,

This topic is archived.

See also:


Back to support forum