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;
}
Common Controls
| Icon | Control |
|---|---|
![]() |
Label |
![]() |
Check Box |
![]() |
Rich Text |
![]() |
Picture Box |
![]() |
Panel |
![]() |
Table |
![]() |
Character Comb |
Additional Controls
| Icon | Control |
|---|---|
![]() |
Line |
![]() |
Shape |
![]() |
Bar Code |
Controls with Separate Data Sources
| Icon | Control |
|---|---|
![]() |
Chart |
![]() |
Gauge |
![]() |
Sparkline |
![]() |
Cross Tab |
![]() |
Subreport |
![]() |
PDF Content |
![]() |
PDF Signature |
Layout and Auxiliary Content Controls
| Icon | Control |
|---|---|
![]() |
Table of Contents |
![]() |
Page Info |
![]() |
Page Break |
![]() |
Cross-Band Line |
![]() |
Cross-Band Box |
Create Custom Controls
Refer to the following help topics for more information on how to create custom controls:





















