DashboardViewerApiOptionBuilder.OnItemWidgetCreated(String) Method
Specifies the JavaScript function (or its name) executed when the client widget is created.
Namespace: DevExpress.DashboardAspNetCore
Assembly: DevExpress.Dashboard.v24.2.AspNetCore.dll
NuGet Package: DevExpress.AspNetCore.Dashboard
#Declaration
public DashboardViewerApiOptionBuilder OnItemWidgetCreated(
string onItemWidgetCreated
)
#Parameters
Name | Type | Description |
---|---|---|
on |
String | The Java |
#Returns
Type | Description |
---|---|
Dashboard |
A reference to this instance after the operation has completed. |
#Remarks
Note
The dashboard item is re-created when you maximize / restore the item. All events connected with dashboard item life cycle (such as ItemItem
, etc.) are fired again.
Note
The Item
The following code shows how to handle the ItemWidgetCreated, ItemWidgetUpdated, and ItemWidgetUpdating events:
<div style="position: absolute; left: 0; top: 0; right: 0; bottom: 0;">
@(Html.DevExpress().Dashboard("dashboardControl1")
.Width("100%")
.Height("100%")
.UseNeutralFilterMode(true)
.Extensions(e => e.ViewerApi(v => v.OnItemWidgetCreated("function(args) { customizeWidgets(args); }")))
.Extensions(e => e.ViewerApi(v => v.OnItemWidgetUpdated("function(args) { customizeWidgets(args); }")))
.Extensions(e => e.ViewerApi(v => v.OnItemWidgetUpdating("function(args) { unsubscribeFromEvents(args); }")))
)
</div>