Documentation

editCell

enables the edit mode for the specified cell

void editCell(string row,string col, [boolean preserve,boolean show] );

Parameters

rowstringthe row id
colstringthe column id
preservebooleanthe true value 'says' to keep the previous editor opened
showbooleanthe true value 'says' to scroll DataTable if the specified cell is out of the viewport

See also

Example

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

Details

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

webix.ui({
    view:"datatable",
    editable:true,
    ...
});
Back to top