Documentation

editNext

closes the current editor and opens one in the next cell of the row

boolean editNext();

Returns

booleanfalse

See also

Example

dtable.editNext();

Details

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

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