Skip to content

editColumn

enables the edit mode for the specified column

function editColumn(
// the column id
id: string
): void
dtable.editColumn("title"); // enables the edit mode for the 'title' column

also check the next samples:

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,
...
});

Articles

API