|
![]() |
Use the listView
JSP tag in a section rule to include the results of a list view
rule in the runtime display of a section. The section may be
part of a flow action.
Use the listView tag only in
advanced situations where hand-crafted HTML code and advanced
options are necessary. In most cases, you can add a list view
display to a Harness, Section, or Flow action directly using
the List View control (
) in the
Advanced Group(
). See
Harness,
Section, and Flow Action forms — Adding a List View
display.
<pega:listView
attribute= "value" ...
<pega:param
name="value" value="value"
/>
</pega:listView>
The name
attribute is required. All attributes
are lowercase; attribute values are in exact case.
Attribute |
Value |
name
|
Second key part — View Purpose — of a list view rule. |
className
|
Optional. Applies To key part of a list view rule. If omitted, the class of the primary page in the runtime context is used. |
owner
|
Optional. Final key part —
Owner — of a list view rule. If
omitted, the default value is |
action
|
Optional. Choose:
If omitted, |
header
|
Optional. Set to |
maxRecords
|
Optional. Positive integer of 9,999 or less to indicate the maximum records to display. If supplied, overrides the Maximum Value field on the Content tab of the list view rule. If omitted, the Maximum Value field applies. The system ignores this attribute when the Enable paging? box on the Organize tab is selected. |
removePages
|
Optional. Set this attribute to delete the clipboard pages created when this list view rule executes. Choose:
If this attribute is omitted, all pages are removed. If the user later attempts to sort and the pages are removed, the report data is re-extracted.
|
includeStyles
|
Optional. Set a value to determine which CSS style sheets are processed to present the display:
|
The following tag presents up to 25 rows from a list view rule named Delta-Mortgage-Details.Zebra.ALL. It sets two parameter values for the list view.
<pega:listView
name="Zebra"
className="Delta-Mortgage-Details"
owner="ALL"
header="true"
action="refresh"
maxRecords="250"
removePages="all"
>
<pega:param
name="State" value="VA" / >
<pega:param
name="Limit" value="400000.00" />
</pega:listView>
A single section rule, flow action rule, or HTML rule cannot contain two listView JSP tags that target the same list view report.
When presenting a list view
display using this JSP tag in a handcrafted HTML form, place
that the listView tag within the FORM element, as in the
following:
<form action=""
method="Post"
<pega:listView
name="zzzz " ... >
</pega:listView>
</form>
In system-generated HTML code, this occurs automatically.
![]() |
About
List View rules
|