DashboardToolbarItem Class
A toolbar item of the specified dashboard toolbar group.
Namespace: DevExpress.Dashboard
Assembly: DevExpress.Dashboard.v17.2.Web.Scripts.dll
Declaration
Remarks
To obtain a list of dashboard toolbar items in the specified group, get access to the ToolboxExtension extension and use the DashboardToolbarGroup.items method.
function onBeforeRender(sender, args) {
var dashboardControl = sender.getDashboardControl(),
toolbox = dashboardControl.findExtension('toolbox'),
toolbarItems = toolbox.toolbarGroups()[0].items();
// ...
}
To learn more about extensions, see Working with Extensions.
Inheritance
Object
DashboardToolbarItem
See Also