Re: [xsl] Non-existing node

Subject: Re: [xsl] Non-existing node
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 17 Sep 2001 10:38:20 +0100
	<xsl:if test="Parent/MyNode=ENS">...</xsl:if>

        To select all "Parent" nodes that don't have a "MyNode" child.

an xsl:if doesn't select anything of course.
Rather than select too much and then use xsl:if to not process some of
them, just select the elements you want in the first place:

select="Parent[not(MyNode)]"

selects all elements called Parent that don't have a MyNode child.

David

_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread