selectAll

selects all items or the specified range

void selectAll( [string from,string to] );
fromstringthe id of an item that selection will be started from
tostringthe id of an item that selection will be ended with

Example

webix.ui({
    view:"dataview",
    id:"data",
    ...
});
$$('data').selectAll(); //selects all items in dataview

Details

If the parameters aren't specified, all items will be selected.

See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix web ui framework and page of javascript context menu product.