Re: [xsl] XPath problem

Subject: Re: [xsl] XPath problem
From: Tom Schutzer-Weissmann <xsl@xxxxxxxxxxxxxxxx>
Date: Wed, 28 Apr 2004 12:12:42 +0100
On Wed, 28 Apr 2004 09:22:18 +0000
"Jonny Pony" <jonnypony666@xxxxxxxxxxx> wrote:
...
> But I want the tree starting from an other node; e.g. the node <nina>.

then just apply the render templates to a subsection of the document:
...
>             <body>
>                 <h3>Can't find the solution for my problem</h3>
>                 <xsl:apply-templates select="DB/Nina" mode="render"/>
>             </body>

Alternatively, change the template that matches the root (/):

>     <xsl:template match="/" mode="render">
>         tree
>         <br/>
>     <xsl:apply-templates select="DB/Nina" mode="render"/>
>     </xsl:template>

This way you will always start with "tree".

regards,
Tom SW

Current Thread