removes selection from the specified item
id | string | the item id |
webix.ui({
view:"dataview",
id:"data",
...
});
$$('data').unselect($$('data').getFirstId()); //removes selection from the first item
Back to top