How to Duplicate XSLT Instructions

Sometimes, you must duplicate XSLT instructions in the target tree. For example, you may create two for-each statements next to one another to loop over two node-sets in the source document, or possibly to loop over the same node-set twice.

Other XSLT instructions, such as xsl:if and xsl:sort, can also be duplicated. This section illustrates creating duplicate instructions using the xsl:for-each statement. The same process applies to other XSLT instructions.

To duplicate an xsl:for-each statement:

  1. Right-click the xsl:for-each node in the target tree and select Duplicate from the context menu that appears.

    The node is duplicated together with its children and mappings. Figure 41-25 shows the duplicate nodes.

    Figure 41-25 Duplicating the xsl:for-each Statement

    Description of Figure 41-25 follows
    Description of "Figure 41-25 Duplicating the xsl:for-each Statement"
  2. Optionally modify the mapping for the xsl:for-each node or change mappings for nodes below the xsl:for-each node.