You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Next »

Use the <report> tag to add a widget that displays a particular report.

Available attributes:

AttributeTypeMandatoryDescription
classStringNSpecify the CSS class name defined in the CSS field of the widget.
conditionStringN

Specify a condition to build a report.

This attribute takes a decoded condition as a value. To decode a query condition, use server methods as recommended.

isMandatoryBooleanNSet the value to true to make the field mandatory. The default value is false.
isVisibleBooleanNSet the value to false to disable the tag. The default value is true.
labelStringNDescribe the field content by giving it a title.
modelStringY

Specify this attribute to connect the client controller data object. When the model data changes, it is automatically transferred to the data of the client script.

readOnly

BooleanN

Set the value to true to make the field read-only. The default value is false.

styleStringN

Specify the display settings (size, font, color, and others) of the widget elements using the CSS syntax.

reportIdStringYSpecify the ID of the report to display.

value

StringN

Specify the default value for the field.

When placing two or more conditions into the condition string, merge them with the caret symbol ( ^ ). The condition syntax is presented below:

ConditionNotationExample
AND^emailLIKE-group^state=active
OR^ORimpact=high^ORurgency=high

See the Condition Operators article to learn more about possible condition operators.

Example:

report
<report reportid="{data.monthBarReportId}" condition="(group.nameLIKEdesk^ORstate=active)"/>


  • No labels