Skip to content

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
dtable.editCell(1, "title", true, true);

also check the next samples:

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

webix.grid({
editable:true,
...
});

Articles

API