SMART datagrid v.1 > Classes > EditOptions
If this value is true and readOnly is false, the user can update the existing row.
Defaults to true.
grid.setOptions({
edit: {
updatable: true,
insertable: true
}
});
grid.setEditOptions({
updatable: true,
insertable: true
});
grid.editOptions().setUpdatable(true);