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]

Re: Scope of variable defined in <xsl: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


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