SMART datagrid v.1 > Classes > DataColumn
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.
$('#chgList').click(function () {
var col = grid.columnByName('codes');
var options = col.editorOptions();
if (options.textReadOnly) {
col.setEditor({
textReadOnly: false
}
}
});