editColumn
enables the edit mode for the specified column
function editColumn( // the column id id: string): void
Example
Section titled “Example”dtable.editColumn("title"); // enables the edit mode for the 'title' column
also check the next samples:
Details
Section titled “Details”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.grid({ editable:true, ...});
See also
Section titled “See also”Articles
API