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

DataInspectorExtensionEvents Interface

Describes events this extension fires.

Declaration

export interface DataInspectorExtensionEvents

Remarks

Find the extension by its name (dataInspector) and pass the event handler’s name to subscribe to the DashboardExportExtension events.

The following code handles the DataInspectorExtensionOptions.onDialogShowing event:

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

Properties

dialogHidden Property

A handler for the event that occurs when the Data Inspector dialog is hidden.

Declaration

dialogHidden: DataInspectorDialogArgs

Property Value

Type Description
DataInspectorDialogArgs

An object that provides data for the event.

Remarks

Main article: onDialogHidden

dialogShowing Property

A handler for the event that occurs before the Data Inspector dialog is shown.

Declaration

dialogShowing: DataInspectorDialogArgs

Property Value

Type Description
DataInspectorDialogArgs

An object that provides data for the event.

Remarks

Main article: onDialogShowing

dialogShown Property

A handler for the event that occurs after the Data Inspector dialog is shown.

Declaration

dialogShown: DataInspectorDialogArgs

Property Value

Type Description
DataInspectorDialogArgs

An object that provides data for the event.

Remarks

Main article: onDialogShown

gridContentReady Property

A handler for the event that occurs after the Grid widget’s content is loaded.

Declaration

gridContentReady: DataInspectorGridArgs

Property Value

Type Description
DataInspectorGridArgs

An object that provides data for the event.

Remarks

Main article: onGridContentReady

gridInitialized Property

A handler for the event that occurs before the Grid widget’s content is loaded.

Declaration

gridInitialized: DataInspectorGridArgs

Property Value

Type Description
DataInspectorGridArgs

An object that provides data for the event.

Remarks

Main article: onGridInitialized