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

Re: Getting an error with a variable

Subject: Re: Getting an error with a variable
From: David Carlisle <davidc@xxxxxxxxx>
Date: Fri, 28 Jul 2006 11:52:44 +0100
openoffice variables
variable bindings are in scope just for the element that contains your
binding, so in your case it is only in scope within the xsl:for-each.
So it's already gone out of scope outside the xsl:when clause.

Also it is a lot more efficient to use the form

<xsl:variable name="sNum" select="@no"/>

as that binds sNum to the attribute whereas

	      <xsl:variable name="sNum">
	        <xsl:value-of select="@no"/>
	      </xsl:variable>
makes a new root node with child a text node with string value the
string value of the attribute.


I think you want the h2 element to contain the @no attribute if
0=$paramVal4
and $paramVal2 otherwise, in which case no variables are needed:

<h2>
<xsl:value-of select="$paramVal2[not(0=$paramVal4)]
                      |
                       /stages[0=$paramVal4]/competition/itinerary/stage[1]/@no" />
</h2>


David

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.