display
The display element allows you to control how the script output will be rendered when the script is run.
Hierarchy
Syntax
<display type = string>
<!-- children –->
</display>
Attributes
type |
declares what data type the output should be when the script is executed. Valid values:- Report - outputs data as a PDF report
- Table - outputs data as a standard item list
|
string |
yes |
Children
settings
|
defines certain attributes about your report. Currently you can define the report title. |
Example
<script>
<name>Display Element</name>
<description></description>
<category> </category>
<input orientation="horizontal" />
<display type="report"></display>
<action returns="table">
<![CDATA[
Select top 10 [ArtifactID] from [View]
]]>
</action>
</script>