editCell
enables the edit mode for the specified cell
function editCell( // the row id row: id, // the column id col: id, // if "true", the previous editor will be kept opened preserve?: boolean, // if "true", DataGrid will be scrolled if the specified cell is out of the viewport show?: boolean): void
Example
Section titled “Example”dtable.editCell(1, "title", true, true);
also check the next samples:
Details
Section titled “Details”Note that the method will work only with the enabled editable parameter:
webix.grid({ editable:true, ...});
See also
Section titled “See also”Articles
API