editCell

enables the edit mode for the specified cell

void editCell(id row,id col, [boolean preserve,boolean show] );
rowidthe row id
colidthe column id
preservebooleanif true, the previous editor will be kept opened
showbooleanif true, DataTable will be scrolled if the specified cell is out of the viewport

Example

dtable.editCell(1, "title", true, true);

Related samples

Details

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

webix.ui({
    view:"datatable",
    editable:true,
    ...
});
See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix html5 library and page of tree table ui product.