SMART datagrid v.1 > Classes > DataColumn

Back  Forward

DataLudi.DataColumn.editorOptions  property

The copy of setting information which is transferred when setting editor

If transfer setting object when calling editor, it will create internal editor based on this information, and the copy of setting object will be stored to this property value. 

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