Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

This element is used to display a summary page within a data-entry page.

...

NameDescriptionValue
id

Unique Identifier

Any
name

A name that describes the summary

mandatory if type is 'drilldown'

Any
visiblemodesThe modes summary should be visible.A comma-separated list of the modes read / new / edit
visibilityconditionsThe 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
hideiconis available to hide the expand/collapse iconfalse,true
hidefiltersis available to hide the summary filtersfalse,true
autosearchis available to run the query without pressing search buttonfalse,true
openlinksinmodalis available to open all the links in summary component as modalfalse,true

Example

Expand

...

titleSummary

Image Removed

 

codetrue

Image Added

Code Block
themeEclipse
languagexml
titleSummary
linenumbers
<summary> 
    <id>sumBills</id>
    <hidefilters>true</hidefilters>
    <autosearch>true</autosearch>
    <value>billing/bills?BILLS.NORMALBILLRUNID~[[getValue,java.lang.String,id]]</value>
</summary>       

...

Expand

...

titleSummary

...

Image Removed

 

code 'drilldown' typetrue
Drilldown

Image Added

Code Block
themeEclipse
languagexml
titleSummary
linenumbers
Drilldown
<summary> 
    <id>sumBills</id>    
    <name>bills</name>
    <type>drilldown</type>
    <value>billing/bills?BILLS.NORMALBILLRUNID~[[getValue,java.lang.String,id]]</value>
</summary>       

 

...