Back to Devexpress

Toolbox

xtrareports-17559-web-reporting-end-user-report-designer-for-web-interface-elements-toolbox.md

latest5.4 KB
Original Source

Toolbox

  • Aug 18, 2023

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:

javascript
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

|

|

|

|

|

|

|

| |

Label

|

Check Box

|

Rich Text

|

Picture Box

|

Panel

|

Table

|

Character Comb

|

Additional Controls

|

|

|

| |

Line

|

Shape

|

Bar Code

|

Controls with Separate Data Sources

|

|

|

|

|

|

|

| |

Chart

|

Gauge

|

Sparkline

|

Cross Tab

|

Subreport

|

PDF Content

|

PDF Signature

|

Layout and Auxiliary Content Controls

|

|

|

|

|

| |

Table of Contents

|

Page Info

|

Page Break

|

Cross-Band Line

|

Cross-Band Box

|