Re: [xsl] determining if one or more instances of a child are present in the current node element

Subject: Re: [xsl] determining if one or more instances of a child are present in the current node element
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 18 Sep 2003 09:54:03 +0100
  <xsl:if test="count(child::*[name()=('ParaItem')]) &gt;=1"> 
  <!-- Check if this expression is correct -->
   
  Is this expression correct in being able to determine if the current
  node has one or more instances of the child ParaItem?


It works but it is vastly more complicated than you need.

<xsl:if test="ParaItem">

is all you need.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. 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
________________________________________________________________________

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


Current Thread