SMART datagrid v1.4 > Classes > DataColumn

Back  Forward

DataLudi.DataColumn.editable  property

true면 이 컬럼에 포함된 데이터셀에서 편집기를 표시할 수 있다. 

편집기가 표시돼도 readOnly이면 값을 수정할 수 없다. 

기본값은 true.

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