xsl-list
[Top] [All Lists]

Re: Check if current node have child with specific attribute

2005-06-23 22:57:55
On 6/23/05, Aron Bock <aronbock(_at_)hotmail(_dot_)com> wrote:

How can I check if the current node have a child with a specific
attribute?
<xsl:if test="*/@specific">
  there is a child with an attribute with name specific
</xsl:if

Great. To get any grandchild I did it like this:

<xsl:if test="*//@this='true'">

That actually looks for a descendent at any depth; to check a grandchild,
i.e. 2 levels down, you really want test="*/*/@this"

Sorry I meant (grand)+child :)

Thanks,
Jacob

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



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