unselect

removes selection from the specified item

void unselect( [string id] );
idstringthe item id

Example

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

See also
Back to top