Versions Compared

Key

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

Summary

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

Attributes

NameDescriptionValue
id

Unique Identifier.

Any
name

A name that describes the summary

mandatory if The summary name. Mandatory if the type is 'drilldown'.

Any
visiblemodesThe modes summary modes the 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 The summary component that will show and also be displayed, plus the conditions to pass in the summary.   (condition~value)

summary xml path?database field~'[[pagefunction, datatype, datapath ]]'
type

the The type of summary.

 drilldowndrilldown: summary is displayed initially as a link only, on click of the link and when clicked the summary is displayed just below the link.

                            This can be used also in tabs

drilldown
hideiconis available to hide Hides the expand/collapse icon.false ,or true
hidefiltersis available to hide Hides the summary filters.false ,or true
autosearchis available to run Runs the query without pressing the search button.false ,or true
openlinksinmodalis available to open Opens all the links in a summary component as a modal.false ,or true

...

Examples

Expand
titleSummary
Image Added

Image Removed 

Code Block
themeEclipse
languagexml
titleSummary
<summary> 
    <id>sumBills<	<id>sumCommunications</id>
    	<name>key_communications</name>
	<hidefilters>true</hidefilters>
    	<openlinksinmodal>true</openlinksinmodal>
	<autosearch>true</autosearch>
    <value>billing/bills?BILLS.NORMALBILLRUNID~	<value>communications/relatedEntity_communications?COMMUNICATIONS.ACCRECID~[[getValue,java.lang.String,id]]</value> </summary>       
Expand
titleSummary Drilldown

Image Removed

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