MetabaseObjectsView.getAllNodesLoaded

Syntax

getAllNodesLoaded() : Boolean;

Description

The getAllNodesLoaded method returns whether all nodes are loaded.

Comments

The method returns True if all nodes are loaded.

Example

To execute the example, the page must contain NavigatorBox component named navbox (see Example of Creating the NavigatorBox Component).

// Get object view
view = navbox.getObjectsView();
// Get whether all nodes are loaded
console.log(view.getAllNodesLoaded() ? "Nodes are loaded" : "Nodes are not loaded");

After executing the example it is obtained whether all nodes are loaded.

See also:

MetabaseObjectsView