Toolbox
The Toolbox contains elements (report controls) that can be added to a report in the Web Report Designer.
To add a new control to the report, drag an item from the Toolbox and drop it onto the report band.
Handle the CustomizeToolbox client-side event to remove controls from the toolbox or add custom controls.
The following JavaScript handler function hides the Label control in the toolbox:
function onCustomizeToolbox(s, e) {
var labelInfo = e.ControlsFactory.getControlInfo("XRLabel");
labelInfo.isToolboxItem = false;
}
You can create a custom control and register it in the Toolbox. Review the following help topics for more information: