Subject: Re: Parent Node recursion template fails
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Wed, 08 Feb 2012 18:04:42 -0500
|
Karl,
Unless you have a template to match the root in this mode, it will apply
templates to its children in this mode ... and you will recurse back to
the root etc.
Try adding
<xsl:template match="/" mode="navigation-special_paint-selected"/>
Cheers,
Wendell
On 2/8/2012 5:50 PM, Karl Stubsjoen wrote:
This recursion template is failing. I'm getting the error, too many
recursions... I would expect that when I get to the root element it
would stop recursing. I guess I need a test for root element.
Karl..
<xsl:template match="*" mode="navigation-special_paint-selected">
<xsl:param name="node-id"/>
<xsl:choose>
<xsl:when test="generate-id() = $node-id">
<xsl:attribute name="background">#eee</xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="parent::node()"
mode="navigation-special_paint-selected">
<xsl:with-param name="node-id" select="$node-id"/>
</xsl:apply-templates>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
--
======================================================================
Wendell Piez mailto:wapiez@xxxxxxxxxxxxxxxx
Mulberry Technologies, Inc. http://www.mulberrytech.com
17 West Jefferson Street Direct Phone: 301/315-9635
Suite 207 Phone: 301/315-9631
Rockville, MD 20850 Fax: 301/315-8285
----------------------------------------------------------------------
Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================
|