RE: [xsl] how to find parent node

Subject: RE: [xsl] how to find parent node
From: "Philip Vallone" <philip.vallone@xxxxxxxxxxx>
Date: Tue, 23 Jan 2007 10:53:55 -0500
Try here:




-----Original Message-----
From: xslt.new [mailto:xslt.new@xxxxxxxxx] 
Sent: Tuesday, January 23, 2007 9:54 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] how to find parent node

Hi:

Suppose I have an xml input:

<element1>
<para>
<test1></test1>
</para>
</element1>
And I want to find out the parent of test1 in the <test1> template
itself. I tried <xsl:value-of select="name(parent::*)"/>. This works
only if <test1> is directly under <element1> and not under <para>. Is
there any way to find out the parent of <test1> wherever it is?

Current Thread