WbkPropertyBarView.getObserveAttributesPanel

Syntax

getObserveAttributesPanel();

Description

The getObserveAttributesPanel method returns the Observation Attributes panel.

Comments

The method returns an object of the PP.TS.Ui.MetaDataViewerPanel type.

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component. Show the Observation Attributes panel:

// Get workbook properties panel
var propertyBar = workbookBox.getPropertyBarView();
// Hide all wizards
propertyBar.hideAllMasters();
// Get the Observation Attributes panel.
var observeAttributesPanel = propertyBar.getObserveAttributesPanel();
// Display panel
observeAttributesPanel.show();
// Expand panel
observeAttributesPanel.expand();

After executing the example the Observation Attributes panel is displayed:

See also:

WbkPropertyBarView