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

Re: Scope of variable defined in <xsl:choose>

Subject: Re: Scope of variable defined in <xsl:choose>
From: Mike Brown <mike@xxxxxxxx>
Date: Sun, 20 May 2001 21:02:29 -0600 (MDT)
variables cant choose
> > <xsl:choose>
> >	<xsl:when test="data/merchant/customer">
> >		<xsl:variable name="numberdisplayed"><xsl:value-of
> select="count(data/merchant/customer)" /></xsl:variable>
> >	</xsl:when>
> >	<xsl:otherwise>
> >		<xsl:variable name="numberdisplayed"><xsl:value-of
> select="count(data/merchant/orders)" /></xsl:variable>
> >	</xsl:otherwise>
> > </xsl:choose>

Those variables can't be used outside the xsl:when or xsl:otherwise, as 
you noticed. You're just thinking the wrong way around. This is what you 
want:

<xsl:variable name="numberdisplayed">
  <xsl:choose>
    <xsl:when test="data/merchant/customer">
      <xsl:value-of select="count(data/merchant/customer)"/>
    </xsl:when>
    <xsl:otherwise>
      <xsl:value-of select="count(data/merchant/orders"/>
    </xsl:otherwise>
  </xsl:choose>
</xsl:variable>

   - Mike
_____________________________________________________________________________
mike j. brown, software engineer at  |  xml/xslt: http://skew.org/xml/
webb.net in denver, colorado, USA    |  personal: http://hyperreal.org/~mike/

 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.