SMART datagrid v1.4 > Classes > DataColumn

Back  Forward

DataLudi.DataColumn.editorOptions  property

editor 설정 시 전달된 설정 정보들의 복사본. 

editor 호출 시 설정 객체를 전달하면, 그 정보를 기준으로 내부 편집기를 생성하게 되고, 설정 객체의 복사본이 이 속성 값으로 보관된다. 

Getter
function editorOptions(): Object
Code -1
    $('#chgList').click(function () {
        var col = grid.columnByName('codes');
        var options = col.editorOptions();
        if (options.textReadOnly) {
            col.setEditor({
                textReadOnly: false
            }
        }
    });
See Also
editor
Examples
Text Cell Editors
List Cell Editors