MetabaseDialogBase.getNavigatorBox

Syntax

getNavigatorBox();

Description

The getNavigatorBox method returns a container for the tree of folders and the list of repository objects.

Comments

This method returns an object of the PP.Mb.Ui.NavigatorBox type.

Example

To execute the example, the HTML page must contain the MetabaseDialogBase component named metabaseDialogBase (see Example of creating the MetabaseDialogBase component). Set the Large Icons view for the list of objects in a base dialog wit repository:

// Get container for the tree of folders and list of repository objects
var navigatorBox = metabaseDialogBase.getNavigatorBox();
// Set the Large Icons view for the dialog
navigatorBox.setObjectListMode(PP.Mb.Ui.NavigatorBox.ObjectListMode.Large);

After executing the example large icons are set for the list of objects in dialog box:

See also:

MetabaseDialogBase