Documentation

editColumn

enables the edit mode for the specified column

void editColumn(string id);

Parameters

idstringthe column id

See also

Example

dtable.editColumn("title"); // enables the edit mode for the 'title' column

Details

By default, the method sets the cursor to the first cell of the column.

Note, the method will work only with the enabled editable parameter:

webix.ui({
    view:"datatable",
    editable:true,
    ...
});
Back to top