Documentation

count

returns the number of currently visible items (counts both parent and child nodes)

number count();

Returns

numberthe number of visible (opened) items

See also

Example

tree = new webix.ui({
    view:"tree",
    ...
});
 
tree.count();

Back to top