getComponentMismatchWizard();
The getComponentMismatchWizard method returns the wizard for selecting changed values of time series data.
This method returns an object of the PP.TS.Ui.ComponentMismatchWizard type.
Executing this example requires the ValidationSettingsDialog component named validationSettingsDialog (see Example of creating the ValidationSettingsDialog component). Show the wizard that selects changed values of time series data in a separate dialog box:
// Get a wizard for selecting changed values of time series var mismatchWizard = validationSettingsDialog.getComponentMismatchWizard(); // Get DOM tree for this wizard var dom = mismatchWizard.getDomNode(); // Set wizard style PP.addClass(dom, "PPValidationSettingsDlgContent"); // Make wizard visible mismatchWizard.show(); // Add the obtained wizard to the standard dialog var dialog = new PP.Ui.Dialog({ Content: mismatchWizard, Width: 750, // Dialog width Height: 120 // Dialog height }); // Display this dialog dialog.show();
After executing the example the created dialog box shows a wizard that selects changed values of time series data:
See also: