WbkPropertyBarView.getValidationErrorsPanel

Syntax

getValidationErrorsPanel();

Description

The getValidationErrorsPanel method returns the Validation Errors panel of the Observation tab.

Comments

The method returns an object of the PP.TS.Ui.ValidationErrorsPanel 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 Validation Errors panel:

// Get workbook properties panel
var propertyBar = workbookBox.getPropertyBarView();
// Get the Validation Errors panel
var validationErrorsPanel = propertyBar.getValidationErrorsPanel();
// Display this panel
validationErrorsPanel.show();
// Expand panel
validationErrorsPanel.expand();

After executing the example the Validation Errors tab is displayed:

See also:

WbkPropertyBarView