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

RE: About <xsl:param> and <xsl:with-param>

Subject: RE: About <xsl:param> and <xsl:with-param>
From: Jarno.Elovirta@xxxxxxxxx
Date: Tue, 5 Nov 2002 14:45:59 +0200
xslt update parameter
FAQ,

> In the next xsl I want to make that the param "cod" be 
> incremented in each time that the <xsl:for-each> cicle 
> occurs, but it's result is an error:
> 
> "javax.xml.transform.TransformerException: xsl:with-param is 
> not allowed in this position in the stylesheet!"
> 
> Why?!
> Tks
> 
> <?xml version="1.0" encoding="ISO-8859-1"?>
> <xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
>     version="1.0"
>     xmlns:xalan="http://xml.apache.org/xslt">
> 	<xsl:param name="cod">0</xsl:param>
> 	<xsl:output method="html"/>
> 	<xsl:template match="/">
>     		<xsl:for-each select=".//Boy">
>     			<xsl:with-param name="cod" 
> select="number($cod+1)"/>
> 			<!--make other things-->
> 		</xsl:for-each>
> 	</xsl:template>
> </xsl:transform>

XSLT doesn't allow you to update parameter values after they've been bound. Repeat "recursion is my friend" ten times, and you'll get the hang of it.

Anyhow, rewrite your stylesheet to

  <xsl:param name="cod" select="0" />
  <xsl:template match="/">
    <xsl:for-each select="//Boy">
      <xsl:variable name="_cod" select="$cod + position()" />
	<!--make other things-->
    </xsl:for-each>
  </xsl:template>

And use $_cod instead of $cod in "make other things". Use select attribute in the xsl:param to bind the parameter into a number, instead of a RTF <http://www.w3.org/TR/xslt#section-Result-Tree-Fragments>.

Cheers,

Jarno

 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.