Re: [xsl] counting nodes before and aften an specific one

Subject: Re: [xsl] counting nodes before and aften an specific one
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 26 Nov 2002 10:04:54 GMT
  how can I count the nodes before the one @active=1
  ant the ones after, assuming there is only one active

if the current node is form-tab, then

<xsl:value-of select="count(tab[@active=1]/preceding-sibling::tab)"/>
<xsl:value-of select="count(tab[@active=1]/following-sibling::tab)"/>

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