Re: [xsl] Parameter Scope

Subject: Re: [xsl] Parameter Scope
From: Matt <puskas.duck@xxxxxxxxx>
Date: Tue, 12 Jun 2007 15:41:20 +0100
Thanks Andrew, I didn't want to put too much info in as to cloud the issue.

I'm quite happy with the structure - other than it appears there is a
lack of way of communucating between the peer templates (pageLayouts)
, and I wondered if I'd missed a trick.

I was thinking of including an extra template in between the root and
the pageLayouts, which would be recursively called from pageLayout,
and your suggestion is encouraging me down that route.

The structure is quite important as I need to map it all back on to a
database design which allows the XSL to be autogenerated eventually.

ie.

<xsl:template match="/">
 <xsl:appy-templates mode="report" />
</xsl:template>

<xsl:template mode="report">
 <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>

Current Thread