SMART datagrid v.1 > Classes > EditOptions
It specifies whether to display cell editor.
If it is false, the editor will not be displayed even in the editable cell. Although you can specify by DataColumn.editable or CellStyle.editable, the editor will be displayed only if this value is specified as true first.
You can specify whether to actually update data cell value by readOnly and DataColumn.readOnly.
Defaults to true.
grid.setOptions({
edit: {
editable: true,
editWhenFocused: true
}
});
grid.setEditOptions({
editable: true,
editWhenFocused: true
});
grid.editOptions().setEditable(true);