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

RE: Parameter problem

Subject: RE: Parameter problem
From: "Marsha Salo" <Marsha@xxxxxxxxxxxxx>
Date: Thu, 2 Oct 2003 13:59:57 +0200
xsl param variable difference
Hi Dave

i have made the changes as you have said,

	<xsl:template match="PartyList/When [last()]">

		<xsl:param name = "first"/>
		<xsl:param name = "last"  select="@Attendance"/>

		<xsl:variable name="difference" select = "$last -
$first"/>
		<TD><xsl:value-of select="$first"/></TD>
		<TD><xsl:value-of select="$last"/></TD>
		<TD><xsl:value-of select="$difference"/></TD>
	
	</xsl:template>

	<xsl:template match="PartyList/When [1]">

		<xsl:variable name="firstN"><xsl:value-of
select="@Attendance"/></xsl:variable>
		<TD><xsl:value-of select="$firstN"/></TD>
	
		<xsl:apply-templates select="following-sibling::When
[last()]">
			<xsl:with-param name="first" select="$firstN"/>
		</xsl:apply-templates>

	</xsl:template>

but the parameter 'first' in template PartyList/When [last()]
still does not have a value. And difference is NaN.

marsha

-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Thursday, October 02, 2003 1:30 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re:  Parameter problem



<xsl:template match="PartyList/When [1]">
here your current node is a When element
so here
<xsl:apply-templates select="PartyList/When [last()]">
you are selecting a When grandchild of the current When element.
i suspect that you don't want that, you want your youngest sibling so
that's
<xsl:apply-templates select="following-sibling::When [last()]">

Incidentally don't do
	<xsl:param name = "last"><xsl:value-of
select="@Attendance"/></xsl:param>

or
	<xsl:variable name="difference"><xsl:value-of select = "$last -
$first"/></xsl:variable>

or 

<xsl:with-param name="first"><xsl:copy-of
select="$firstN"/></xsl:with-param>

It makes the system work much harder than necessary.


just use 


	<xsl:param name = "last" select="@Attendance"/>
        <xsl:variable name="difference" select = "$last -$first"/>
       <xsl:with-param name="first" select="$firstN"/>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

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


 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.