properties-mapping JavaServer Page tag |
Use the properties-mapping JSP tag to enclose a list of from-to property mappings defined by the <property-map > JSP tags. This tag appears as an optional part of the listToList JSP tag.
For example:
<pega:properties-map >
<pega:property-map
from=".A" to=".ALPHA" />
<pega:property-map
from=".B" to=".BETA" />
</pega:properties-map>
In this example, a property named A on an embedded pages of
a source Page List
is mapped to a property named
ALPHA on the embedded pages of a target Page List
property. Similarly, property B is mapped to BETA.
In the syntax presentation below:
<pega:properties-mapping">
<!-- one or more pega:property-mapping JSP tags
in this format: -->
<pega:property-mapping
from="propertyref"
to="propertyref" />
</pega:properties-mapping>
At least one <pega:property-mapping ....> tag is required. For the <pega:property-mapping > JSP tag, both the from and to attributes are required.
listToList
JSP tag
Harness, section, and flow action forms — Adding a List-to-List control |