This gets the first nested nodes using xsl:for-each
Code:
<xsl:for-each select="$dcr[4 > position()]">
</xsl:for-each>
I have tried getting the last 3 nested nodes with this...
Code:
<xsl:for-each select="$dcr[4 < position()]">
</xsl:for-each>
But it returns ever node.
Please help.