ParametersDialog.addView

Syntax

addView(value);

Parameters

value. Tab to be inserted to the dialog box.

Description

The addView method adds a new tab to the Parameters dialog box.

Example

Executing the example requires that the HTML page contains the ParametersDialog component named parametersDialog (see Example of Creating the ParametersDialog Component). Add a new tab to the dialog box:

// Create a PP.Exp.Ui.ParametersDimensionsView( tab
var parametersDimensionsView = new PP.Exp.Ui.ParametersDimensionsView({
    Source: eaxAnalyzer,
    Name: "Other dimensions",
    GroupName: "params1"
});
// Add a new tab
parametersDialog.addView(parametersDimensionsView);

After executing the example the Other Dimensions tab implemented by the PP.Exp.Ui.ParametersDimensionsView component is added to the Parameters dialog box.

See also:

ParametersDialog