MetabaseObjectsView.MultiSelect

Syntax

MultiSelect : Boolean;

Description

The MultiSelect property determines whether multiple selection is available.

Comments

Use JSON or the setMultiSelect method to set the property value and the getMultiSelect method to get the property value.

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();
// Set single selection
view.setMultiSelect(false);

After executing the example the single selection mode is set.

See also:

MetabaseObjectsView