SMART datagrid v.1 > Classes > DataColumn
If it is true, you can display the editor in data cell included in this column.
Even though the editor is displayed, you will not be able to update the value if it is readOnly.
Defaults to true.
var col = grid.focusedIndex().column;
if (!col.editable()) {
col.setEditable(true);
}