Subject: RE: Find ancestor attribute of variable
From: "Robert Soesemann" <rsoesemann@xxxxxxxxxxx>
Date: Tue, 30 Nov 2004 14:20:57 +0100
|
Does the [1] in your answer ensure that this is the closest
<contentitem>?
<contentitem>
<contentitem> <--- Would select this?
<anchor/>
</contentitem>
</contentitem>
R.
-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Dienstag, 30. November 2004 13:04
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: Find ancestor attribute of variable
<xsl:variable name="type" select="ancestor::$anchor-node[name(.) =
'contentitem'] you can't have a variable after an axis, you just want
$anchor-node/ancestor::contentitem[1]/@type
David
________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. For more information on a proactive anti-virus
service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________
|