Skip to main content
You are viewing help content for a version that is no longer maintained/updated.
All docs
V17.2
  • DashboardToolbarItem Class

    A toolbar item of the specified dashboard toolbar group.

    Namespace: DevExpress.Dashboard

    Assembly: DevExpress.Dashboard.v17.2.Web.Scripts.dll

    Declaration

    public class DashboardToolbarItem

    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