enables the edit mode for the specified column
id | string | the column id |
dtable.editColumn("title"); // enables the edit mode for the 'title' column
By default, the method sets the cursor to the first cell of the column.
Note that the method will work only with the enabled editable parameter:
webix.ui({
view:"datatable",
editable:true,
...
});