getAllNodesLoaded() : Boolean;
The getAllNodesLoaded method returns whether all nodes are loaded.
The method returns True if all nodes are loaded.
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: