Subject: Re: 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 |
- RE: Non-existing node, (continued)
- Casadome, Francisco Javier - Mon, 17 Sep 2001 03:55:57 -0400 (EDT)
- Casadome, Francisco Javier - Mon, 17 Sep 2001 05:06:00 -0400 (EDT)
- David Carlisle - Mon, 17 Sep 2001 05:47:40 -0400 (EDT)
- David Carlisle - Mon, 17 Sep 2001 05:49:47 -0400 (EDT) <=
- Chris Bayes - Mon, 17 Sep 2001 05:56:25 -0400 (EDT)
- Francis Norton - Mon, 17 Sep 2001 06:08:04 -0400 (EDT)
- Michael Kay - Mon, 17 Sep 2001 09:15:23 -0400 (EDT)
- Casadome, Francisco Javier - Mon, 17 Sep 2001 06:23:12 -0400 (EDT)
|
|