SMART datagrid v.1 > Classes > EditOptions
If it is true, when the location of Focused Cell is determined, if it is an editable cell, the editor will be displayed immediately.
First, both editable and editable of column should be true. And, editable should not be specified as false through CellStyle.
Defaults to false.
grid.setOptions({
edit: {
editable: true,
editWhenFocused: true
}
});
grid.setEditOptions({
editable: true,
editWhenFocused: true
});
grid.editOptions().setEditWhenFocused(true);