ParamsDialog.Params

Syntax

Params: Array of PP.Mb.Param

Description

The Params property sets report parameters to be displayed in the dialog box.

Example

To execute this example, use the page created as an example for the ParamView constructor and add a link to the PP.Report.js library. Add the following script in body of the onEaxReady function:

but = new PP.Ui.Button({

    Content: "Edit parameters",

    ParentNode: document.body,

    Click: function (sender, args) {

        paramD = new PP.Prx.Ui.ParamsDialog({

            Params: eaxAnalyzer.getParams()

        });

        paramD.show();

    }

});

After executing the example the Edit Parameters button is placed on the page. Clicking this button opens a dialog box for editing values of report parameters:

See also:

ParamsDialog