Skip to main content

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:

Common Controls

web-designer-toolbox-label

web-designer-toolbox-checkbox

web-designer-toolbox-rich-text

web-designer-toolbox-picture-box

web-designer-toolbox-panel

web-designer-toolbox-table

web-designer-toolbox-cellular-label

Label

Check Box

Rich Text

Picture Box

Panel

Table

Character Comb

Additional Controls

web-designer-toolbox-line

web-designer-toolbox-shape

web-designer-toolbox-barcode

Line

Shape

Bar Code

Controls with Separate Data Sources

web-designer-toolbox-chart

web-designer-toolbox-gauge

web-designer-toolbox-sparkline

web-designer-toolbox-pivotgrid

web-designer-toolbox-subreport

Chart

Gauge

Sparkline

Cross Tab

Subreport

PDF Content

PDF Signature

Layout and Auxiliary Content Controls

WebReportDesigner_Toolbox_TableOfContent

web-designer-toolbox-page-info

web-designer-toolbox-page-break

web-designer-toolbox-cross-band-line

web-designer-toolbox-cross-band-box

Table of Contents

Page Info

Page Break

Cross-Band Line

Cross-Band Box