SMART datagrid v1.4 > Classes > ListCellEditor

Back  Forward

DataLudi.ListCellEditor.textReadOnly  property

true면 편집기에서 값을 수정할 수 없고, 리스트 상자 항목 선택을 통해서만 데이터셀 값을 변경할 수 있다. 

readOnlytrue면 애초에 리스트 상자를 펼칠 수 없다. 

기본값은 false.

Getter
function textReadOnly(): Boolean
Setter
function setTextReadOnly(value: Boolean)
Code -1
    var columns = [{
            name: "CustomerID",
            fieldName: "CustomerID",
            width: "120",
            editor: {
                type: "list",
                readOnly: true,
                ...
            }
        }, 
        ...
    ];
    grid.setColumns(column);
See Also
CellEditor.readOnly
Examples
List Cell Editor