Skip to main content

DashboardControlClientSideEvents.ItemCaptionToolbarUpdated Property

Gets or sets a function used in JavaScript frameworks that is executed when the ASPxClientDashboard.ItemCaptionToolbarUpdated event is raised.

Namespace: DevExpress.DashboardWeb

Assembly: DevExpress.Dashboard.v23.2.Web.WebForms.dll

NuGet Package: DevExpress.Web.Dashboard

Declaration

[DefaultValue("")]
public string ItemCaptionToolbarUpdated { get; set; }

Property Value

Type Default Description
String String.Empty

A string that is a function executed when the the event is raised.

Remarks

Handle the ItemCaptionToolbarUpdated event to customize the dashboard item’s caption. For instance, you can add custom command buttons, create additional menus, add static texts, etc. The DashboardItemCaptionToolbarOptions class contains options used to customize a dashboard item caption’s elements (the ViewerToolbarItem objects).

Note

The corresponding DashboardControl’s API: ViewerApiExtensionOptions.onItemCaptionToolbarUpdated.

See Also