Documentation

unselectAll

removes selection from all items

void unselectAll();

See also

Example

webix.ui({
    view:"dataview",
    id:"data",
    ...
});
$$('data').unselectAll();

Back to top