xsl-list
[Top] [All Lists]

RE: [xsl] Parameter Scope

2007-06-12 07:42:24
 
First thing, surely, is to remove the single quotes in your select.
That is: select="$pageNo"

Brad


-----Original Message-----
From: Matt [mailto:puskas(_dot_)duck(_at_)gmail(_dot_)com] 
Sent: June 12, 2007 10:12 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] Parameter Scope

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.

Thanks in advance for any suggestions...

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>