xsl-list
[Top] [All Lists]

Re: [xsl] Parameter Scope

2007-06-12 07:41:36
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>

--~------------------------------------------------------------------
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>