DashboardToolboxItem Class
A toolbox item of the specified dashboard toolbox group.
Namespace: DevExpress.Dashboard
Assembly: DevExpress.Dashboard.v17.2.Web.Scripts.dll
Declaration
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