DashboardMenuItem Class
A dashboard menu item.
Namespace: DevExpress.Dashboard
Assembly: DevExpress.Dashboard.v17.2.Web.Scripts.dll
Declaration
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