DashboardControlEvents Type
In This Article
Provides access to the DashboardControl’s events.
#Declaration
TypeScript
export type DashboardControlEvents = {
initializing: DashboardControlArgs;
beforeRender: DashboardControlArgs;
dashboardInitializing: DashboardInitializingArgs;
dashboardInitialized: DashboardInitializedArgs;
dashboardStateChanged: DashboardStateChangedArgs;
itemBeginUpdate: DashboardItemUpdateArgs;
itemEndUpdate: DashboardItemUpdateArgs;
dashboardBeginUpdate: DashboardUpdateArgs;
dashboardEndUpdate: DashboardUpdateArgs;
optionChanged: DashboardOptionChangedArgs<DashboardControlOptions>;
}
#Members
Name | Type | Description |
---|---|---|
before |
Dashboard |
Occurs before any element in the Web Dashboard control has been rendered. |
dashboard |
Dashboard |
Occurs when a dashboard update is initiated. |
dashboard |
Dashboard |
Occurs after the dashboard is updated. |
dashboard |
Dashboard |
Occurs after the dashboard displayed in the control has been initialized. |
dashboard |
Dashboard |
Occurs before the dashboard displayed in the control has been initialized. |
dashboard |
Dashboard |
Occurs after the current dashboard state in the Web Dashboard is changed. |
initializing | Dashboard |
Occurs after the control has been initialized and before the control has been rendered. |
item |
Dashboard |
Occurs when a dashboard item update is initiated. |
item |
Dashboard |
Occurs after the dashboard item is updated. |
option |
Dashboard |
Occurs after a widget option is changed. |