Subject: Re: First ancestor with a specific attribute
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Fri, 01 Jul 2011 14:02:55 +0200
|
Jacobus Reyneke wrote:
Hi,
I'm having a blonde moment here and I don't use xslt everyday. I'm
simply trying to get the first ancestor of a node that contains a
specific attribute.
My attempt: select="ancestor::node()[@name!=null]/@name"
XSLT 2.0:
select="ancestor::*[exists(@name)][1]/@name"
Desired effect: return the first ancestor that has a 'name' element.
Martin Honnen --- MVP Data Platform Development
http://msmvps.com/blogs/martin_honnen/
|