MissingDataWizard Constructor

Syntax

PP.TS.Ui.MissingDataWizard(settings: Object);

Parameters

settings. JSON object that contains values of class properties.

Description

The MissingDataWizard constructor creates an instance of the MissingDataWizard class.

Example

To execute the example, the HTML page must contain the WorkbookBox component named workbookBox (see Example of Creating the WorkbookBox Component). Create the Missing Data validation wizard and place it in a dialog:

// Create a wizard for validation of the Missing Data type
var missingDataWizard = new PP.TS.Ui.MissingDataWizard();
// Get DOM tree for this wizard
var dom = missingDataWizard.getDomNode();
// Set wizard style
PP.addClass(dom, "PPValidationSettingsDlgContent");
// Add the created wizard to the dialog
var dialog = new PP.Ui.Dialog({
    Caption: "Missing Data",
    Content: missingDataWizard,
    Width: 500 // Dialog width
});
// Display this dialog
dialog.show();

After executing the example the Missing Data validation wizard is created and placed in a dialog:

See also:

MissingDataWizard