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