enables the edit mode for the specified cell
| row | id | the row id |
| col | id | the column id |
| preserve | boolean | if true, the previous editor will be kept opened |
| show | boolean | if true, DataTable will be scrolled if the specified cell is out of the viewport |
dtable.editCell(1, "title", true, true);
Note that the method will work only with the enabled editable parameter:
webix.ui({
view:"datatable",
editable:true,
...
});