xsl-list
[Top] [All Lists]

Re: XPath problem

2004-04-28 04:12:42
On Wed, 28 Apr 2004 09:22:18 +0000
"Jonny Pony" <jonnypony666(_at_)hotmail(_dot_)com> 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


<Prev in Thread] Current Thread [Next in Thread>