Skip to main content

DashboardViewerApiOptionBuilder.OnItemWidgetUpdating(String) Method

Specifies the JavaScript function (or its name) executed when the client widget is about to be updated.

Namespace: DevExpress.DashboardAspNetCore

Assembly: DevExpress.Dashboard.v23.2.AspNetCore.dll

NuGet Package: DevExpress.AspNetCore.Dashboard

Declaration

public DashboardViewerApiOptionBuilder OnItemWidgetUpdating(
    string onItemWidgetUpdating
)

Parameters

Name Type Description
onItemWidgetUpdating String

The JavaScript function (or its name) executed when the event is raised.

Returns

Type Description
DashboardViewerApiOptionBuilder

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 ItemWidgetCreated, ItemWidgetUpdated, etc.) are fired again.

Note

The ItemWidgetUpdating event is not fired for a custom dashboard 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>
See Also