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

Re: Parameter Scope

Subject: Re: Parameter Scope
From: "Andrew Welch" <andrew.j.welch@xxxxxxxxx>
Date: Tue, 12 Jun 2007 15:33:32 +0100
Re:  Parameter Scope
On 6/12/07, Matt <puskas.duck@xxxxxxxxx> wrote:
Hi all,

I need to be able to pass a pageNo parameter out of a 'lower level'
template into its peer template in the following structure:

<xsl:template match="/">
  <xsl:param name="pageNo" select="'1'"/>

  <xsl:apply-templates mode="pageLayout1">
     <xsl:with-param name="pageNo" select="'$pageNo'"/>
  </xsl:apply-templates>

  <xsl:apply-templates mode=pageLayout2">
    <xsl:with-param name="pageNo" select="'$pageNo'"/>
  </xsl:apply-templates>

</xsl:template>

Where pageLayout1 is a recursive template, it increments the page each
time, I then need to pass the final value into the 2nd pageLayout
template.

At the exit point in the recursive template just apply-templates to the root:


<xsl:apply-templates select="/" mode="pageLayout2">
  <xsl:with-param name="pageNo" select="'$pageNo'"/>
</xsl:apply-templates>

and remove the call in the root matching template.

However it could well be that a different approach altogether would be
best, but its not possible to suggest anything with the sample you've
given

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.