MetabaseObjectsView.getObjects

Syntax

getObjects();

Description

The getObjects method returns all repository objects.

Comments

The method returns an array of objects of the PP.Mb.Object type.

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 repository objects
view.getObjects();
// -> [PP.Mb.Object, PP.Mb.Object, PP.Mb.Object ]

After executing the example all repository objects are obtained.

See also:

MetabaseObjectsView