SMART datagrid v.1 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.fixedColumnReadOnly  property

If it is true, you will not be able to update the value of cells which have been contained in fixed column. 

Defaults to false.

Getter
function fixedColumnReadOnly(): Boolean
Setter
function setFixedColumnReadOnly(value: Boolean)
Note
Code -1
   grid.setOptions({
        edit: {
            fixedRowReadOnly: false,
            fixedColumnReadOnly: false
        }
    });
Code -2
    grid.setEditOptions({
        fixedRowReadOnly: true,
        fixedColumnReadOnly: true
    });
See Also
Editable & ReadOnly Overview
DisplayOptions.fixedColumnCount
DisplayOptions.fixedRowCount
fixedRowReadOnly
Cell Editing Overview
Examples
ReadOnly & Editable
Fixed Columns
Fixed Rows
Cell Editing