SMART datagrid v.1 > Classes > EditOptions
If it is true, when click the current Focused Cell with mouse, the editor will be displayed.
If editable is false or editable of cell column is false, it will not display the editor.
Defaults to false.
grid.setOptions({
edit: {
editable: true,
editWhenClickFocused: true
}
});
grid.setEditOptions({
editable: true,
editWhenClickFocused: true
});
grid.editOptions().setEditWhenClickFocused(true);