Subject: Re: 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 |
- XPath problem
- Jonny Pony - Wed, 28 Apr 2004 05:34:34 -0400 (EDT)
- Tom Schutzer-Weissmann - Wed, 28 Apr 2004 07:21:31 -0400 (EDT) <=
|
|