enables the edit mode for the specified cell
row | string | the row id |
col | string | the column id |
preserve | boolean | the true value 'says' to keep the previous editor opened |
show | boolean | the true value 'says' to scroll DataTable if the specified cell is out of the viewport |
dtable.editColumn(1, "title", true, true);
Note, the method will work only with the enabled editable parameter:
webix.ui({
view:"datatable",
editable:true,
...
});
Back to top