This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: : Context inside nested for-eaches from different document() s


>I have something like this:
>
><xsl:variable name="a" select="document('a.xml')/TopNode"/>
>...
>
><xsl:template match="elementX">
><xsl:for-each select="$a">
><xsl:value-of select="./@AnAttribute[../@DifferentAttribute= <<here I want
>to refer to an attribute from an elementX>>]"/>
>
Even when you are not switching documents, it is useful to use
variables.  Try:

<xsl:template match="elementX">
<xsl:variable name="x" select="." />
<xsl:for-each select="$a">
<xsl:value-of select="./@AnAttribute[../@DifferentAttribute=
$x/@AttributeFromX]"/>

If you were using apply-templates instead of for-each, then pass
parameters.

Regards,
Trevor Nash
--
Traditional training & distance learning,
Consultancy by email

Melvaig Software Engineering Limited
voice:     +44 (0) 1445 771 271 
email:     tcn@melvaig.co.uk

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]