Skip to main content
A newer version of this page is available. .

DashboardParameterDialogExtensionEvents Interface

Describes events this extension fires.

Declaration

export interface DashboardParameterDialogExtensionEvents

Remarks

Find the extension by its name (dashboardParameterDialog) and pass the event handler’s name to subscribe on the DashboardParameterDialogExtension events.

The following code handles the DashboardParameterDialogExtension.onShowing event:

function onBeforeRender(dashboardControl) {
  let dashboardParameterDialog = dashboardControl.findExtension("dashboardParameterDialog");
  if (dashboardParameterDialog) {
    dashboardParameterDialog.on('showing', customizeDialog);
  }
}
function customizeDialog(args) {
  // ...
}

Properties

dynamicLookUpValuesLoaded Property

A handler for the event that occurs after parameter values provided using a Dynamic List are loaded.

Declaration

dynamicLookUpValuesLoaded: DynamicLookUpValuesLoadedArgs

Property Value

Type Description
DynamicLookUpValuesLoadedArgs

An object that provides data for the event.

Remarks

Main article: onDynamicLookUpValuesLoaded

hidden Property

A handler for the event that occurs after the Dashboard Parameters dialog is hidden.

Declaration

hidden: DashboardParameterDialogArgs

Property Value

Type Description
DashboardParameterDialogArgs

An object that provides data for the event.

Remarks

Main article: onHidden

showing Property

A handler for the event that occurs before the Dashboard Parameters dialog is shown.

Declaration

showing: DashboardParameterDialogArgs

Property Value

Type Description
DashboardParameterDialogArgs

An object that provides data for the event.

Remarks

Main article: onShowing

shown Property

A handler for the event that occurs after the Dashboard Parameters dialog is shown.

Declaration

shown: DashboardParameterDialogArgs

Property Value

Type Description
DashboardParameterDialogArgs

An object that provides data for the event.

Remarks

Main article: onShown