MetabaseDialogBase.getNavigatorBox

Syntax

getNavigatorBox();

Description

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

Comments

The method returns object of the PP.Mb.Ui.NavigatorBox type.

Example

Executing the example requires that html page contains the MetabaseDialogBase component named metabaseDialogBase (see Example of creating the MetabaseDialogBase component). Set the Large Icons view for the list of objects in a basic dialog box with 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