xsl-list
[Top] [All Lists]

Re: Check if current node have child with specific attribute

2005-06-23 06:29:03

> > 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"

--A

_________________________________________________________________
Express yourself instantly with MSN Messenger! Download today - it's FREE! http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/


--~------------------------------------------------------------------
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>
--~--