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

    A toolbox item of the specified dashboard toolbox group.

    Namespace: DevExpress.Dashboard

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

    Declaration

    public class DashboardToolboxItem

    Remarks

    To obtain a list of dashboard toolbox items in the specified group, get access to the ToolboxExtension extension and use the DashboardToolboxGroup.items method.

    function onBeforeRender(sender, args) {
        var dashboardControl = sender.getDashboardControl(),
        toolbox = dashboardControl.findExtension('toolbox'),
        toolboxItems = toolbox.toolboxGroups()[0].items();
    
        // ...
    }
    

    To learn more about extensions, see Working with Extensions.

    Inheritance

    Object
    DashboardToolboxItem
    See Also