[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: What is the scope of template variables?

Subject: Re: What is the scope of template variables?
From: "Kurt Cagle" <cagle@xxxxxxxxx>
Date: Wed, 16 May 2001 15:45:49 -0500
xsl call template scope
 <xsl:template match="something">
     <xsl:variable name="a" select="XPathExpr"/>
     ........
     <xsl:call-template name="func1"/>
     <xsl:apply-templates select="junk"/>
     .....
 </xsl:template>
 
 <xsl:template name="func1">
     <!-- QUESTION:  Is the variable $a defined in the calling template
 visible to this template? -->
    <!-- Answer: No -->
 </xsl:template>
 
 <xsl:template match="junk">
     <!-- QUESTION:  Is the variable $a defined in the calling template
 visible to this template? -->
    <!-- Answer: No -->
 </xsl:template>
> 
> <Thanks author="Shakeel Mahate"/>

You need to pass the variables in via parameters to make them visible:

<xsl:template match="something">
    <xsl:variable name="a" select="XPathExpr"/>
    ....
    <xsl:call-template name="func1">
        <xsl:with-param name="a" select="$a"/>
    </xsl:call-template>
    <xsl:apply-templates select="junk">
        <xsl:with-param name="a" select="$a"/>
    </xsl:call-template>
</xsl:template>

<xsl:template name="func1">
    <xsl:param name="a"/>
    <!-- $a is now visible to this template -->
</xsl:template>

<xsl:template match="junk">
    <xsl:param name="a"/>
    <!-- $a is now visible to this template -->
</xsl:template>

-- Kurt Cagle


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.