Back to Devexpress

DashboardInitializingArgs Type

dashboard-js-devexpress-dot-dashboard-4f105e90.md

latest1.2 KB
Original Source

DashboardInitializingArgs Type

Provides data for the DashboardInitializing event.

Declaration

ts
export type DashboardInitializingArgs = {
    component: DevExpress.Dashboard.DashboardControl;
    dashboardId: string;
    dashboard: DevExpress.Dashboard.Model.Dashboard;
    ready: JQueryPromise<any>;
}

Members

NameTypeDescription
componentDashboardControl

A Web Dashboard control.

| | dashboard | Dashboard |

A model of the dashboard displayed in the control.

| | dashboardId | string |

A string value that is the dashboard identifier.

| | ready | JQueryPromise<any> |

A JQuery Promise object that is resolved after the action is completed.

|

Remarks

Use the onDashboardInitializing handler to raise the DashboardInitializing event.

To learn more about promises, see JQueryPromise.