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

    Namespace: DevExpress.Dashboard

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

    Declaration

    public class DashboardMenuItem

    Remarks

    The JavaScript extensions allow you to customize and provide certain functionality to the Web Dashboard control. To learn more about extensions, see Working with Extensions.

    To get a list of dashboard menu items, address the ToolboxExtension extension and use the ToolboxExtension.menuItems method.

    function onBeforeRender(sender, args) {
        var dashboardControl = sender.getDashboardControl();
        var toolbox = dashboardControl.findExtension('toolbox');
        toolbox.menuItems();
    }
    

    Inheritance

    Object
    DashboardMenuItem
    See Also