SMART datagrid v.1 > Classes > DerivedColumn

Back  Forward

DataLudi.DerivedColumn.editable  property

If it is true, it will be able to display the editor in data cell which is contained in this column. 

Defaults to true.

Getter
function editable(): Boolean
Setter
function setEditable(value: Boolean)
Code -1
    var col = grid.focusedIndex().column;
    if (!col.editable()) {
        col.setEditable(true);
    }
See Also
editable
Cell Editing Overview
editOptions
Examples
ReadOnly & Editable
Cell Editing