Enables or disables editing of the cell text by the end user. The default value is false
(editing is disabled).
The cell switches to edit mode with F2 or Enter keys, mouse double click or when the users starts typing the new value.
var value = obj.getCellEditable();
obj.setCellEditable(value);
obj.onCellEditableChanging = function(value){...};
obj.onCellEditableChanged = function(value){...};
obj.onCellEditableError = function(value){...};
obj.setCellEditable(true); // all cells editable
obj.setCellEditable(false, 0); // col-0 readonly
Events: editing and validation
Grid templates: cell
Cell model: text, image, tooltip, link, value, data, format, state, selected