Re: [xsl] determine if atleast one element equal to a particular value

Subject: Re: [xsl] determine if atleast one element equal to a particular value
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 8 Sep 2005 23:57:08 +0100
Is there any way in xsl to determine if atleast one of
the fieldvalue of metadata with fieldid=5 is 1
i.e.
<xsl:if test="any(metadata[@fieldid=5]/fieldvalue) =
1">
</xsl:if>

just delete "any" from your exampleand it does what you want.
well it just selects metadata children if you need all metadata any
depth with that property you want //metadata[@field=5]/fieldvalue=1

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread