|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: : Context inside nested for-eaches from different d
>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@xxxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








