[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] 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
|
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
|