Skip to main content
A newer version of this page is available.
All docs
V17.2

ASPxClientReportDesigner.CustomizeToolbox Event

Enables you to customize the Toolbox of the Web Report Designer.

Namespace: DevExpress.XtraReports.Web.Scripts

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

Declaration

public event ASPxClientReportDesignerCustomizeToolboxEventHandler CustomizeToolbox

Event Data

The CustomizeToolbox event's data class is ASPxClientReportDesignerCustomizeToolboxEventArgs. The following properties provide information specific to this event:

Property Description
ControlsFactory Provides information about all controls available in the Toolbox.

Remarks

Use the client-side CustomizeToolbox event to customize the Report Designer Toolbox. The ASPxClientReportDesignerCustomizeToolboxEventArgs.ControlsFactory event argument provides information about all controls available in the Toolbox. To register a custom control, use the ASPxDesignerControlsFactory.registerControl method, which accepts the control name and object storing information about a custom toolbox item.

For a step-by-step tutorial on how to add a custom control, see Registering a Custom Control in the Report Designer Toolbox.

See Also