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.

Web Report Designer - Toolbox

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
Web Report Designer - Label Toolbox Item Label
Web Report Designer - Check Box Toolbox Item Check Box
Web Report Designer - Rich Text Toolbox Item Rich Text
Web Report Designer - Picture Box Toolbox Item Picture Box
Web Report Designer - Panel Toolbox Item Panel
Web Report Designer - Table Toolbox Item Table
Web Report Designer - Character Comb Toolbox Item Character Comb

Additional Controls

Icon Control
Web Report Designer - Line Toolbox Item Line
Web Report Designer - Shape Toolbox Item Shape
Web Report Designer - Bar Code Toolbox Item Bar Code

Controls with Separate Data Sources

Icon Control
Web Report Designer - Chart Toolbox Item Chart
Web Report Designer - Gauge Toolbox Item Gauge
Web Report Designer - Sparkline Toolbox Item Sparkline
Web Report Designer - Cross Tab Toolbox Item Cross Tab
Web Report Designer - Subreport Toolbox Item Subreport
Web Report Designer - PDF Content Toolbox Item PDF Content
Web Report Designer - PDF Signature Toolbox Item PDF Signature

Layout and Auxiliary Content Controls

Icon Control
Web Report Designer - Table of Contents Toolbox Item Table of Contents
Web Report Designer - Page Info Toolbox Item Page Info
Web Report Designer - Page Break Toolbox Item Page Break
Web Report Designer - Cross-Band Line Toolbox Item Cross-Band Line
Web Report Designer - Cross-Band Box Toolbox Item Cross-Band Box

Create Custom Controls

Refer to the following help topics for more information on how to create custom controls: