SMART datagrid v.1 > Classes > EditOptions
If it is true, when double click the mouse in the same data cell, the editor will be displayed.
It should be the state of which can display the editor like editable.
Defaults to true.
grid.setOptions({
edit: {
editable: true,
showEditorWhenDblClicked: false
}
});
grid.setEditOptions({
editable: true,
showEditorWhenDblClicked: false
});
grid.editOptions().setShowEditorWhenDblClicked(true);