...
Name | Description | Value |
---|---|---|
id | Unique Identifier | Any |
name | A name that describes the summary | Any |
visiblemodes | ||
visibilityconditions | ||
value | ||
hideicon | The modes summary should be visible. | A comma-separated list of the modes read / new / edit |
visibilityconditions | The conditions that should be met in order to display the summary. | '[[pagefunction, datatype, datapath ]]' operator(==,!=) 'value' |
value | the summary component that will show and also the conditions to pass in the summary. (condition~value) | summary xml path?database field~'[[pagefunction, datatype, datapath ]]' |
type | the type of summary. drilldown: summary is displayed initially as a link only, on click of the link the summary is displayed just below the link. This can be used also in tabs | drilldown |
hideicon | is available to hide the expand/collapse icon | false,true |
hidefilters | is available to hide the summary filters | false,true |
autosearch | is available to run the query without pressing search button | false,true |
openlinksinmodal | is available to open all the links in summary component as modal | false,true |
...
true |
Examples
Summary
Code Block | ||||
---|---|---|---|---|
| ||||
<summary>
<id>sumBills</id>
<hidefilters>true</hidefilters>
<autosearch>true</autosearch>
<value>billing/bills?BILLS.NORMALBILLRUNID~[[getValue,java.lang.String,id]]</value>
</summary> |
Summary 'drilldown' type
Code Block | ||||
---|---|---|---|---|
| ||||
<summary>
<id>sumBills</id>
<type>drilldown</type>
<value>billing/bills?BILLS.NORMALBILLRUNID~[[getValue,java.lang.String,id]]</value>
</summary> |