SMART datagrid v.1 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.fixedRowReadOnly  property

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

Defaults to false.

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