SMART datagrid v1.4 > Classes > EditOptions

Back  Forward

DataLudi.EditOptions.fixedRowReadOnly  property

true면 고정 행에 포함된 셀들의 값을 수정할 수 없다. 

기본값은 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 개요
DisplayOptions.fixedColumnCount
DisplayOptions.fixedRowCount
fixedColumnEditable
셀 편집 개요
Examples
ReadOnly & Editable
고정 Columns
고정 Rows
셀 편집