xsl-list
[Top] [All Lists]

Re: [xsl] Finding the position of an element wrt to other element

2010-11-19 05:59:29
Rashi Bhardwaj wrote:

Output I m getting is position 123, but i want it should count all b
from top to end at any level and give relative position like here it
should give 342. I m getting how to go ahead...please help  me out
thanks......


If you do:

<xsl:for-each select="$node">
  <xsl:value-of select="position()"/>
</xsl:for-each>

You will always get 1 2 3 ... whatever the input is (the nember depending on 
the size of the input) 
-- 
Piet van Oostrum
Cochabamba. URL: http://pietvanoostrum.com/
Nu Fair Trade woonartikelen op http://www.zylja.com

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--

<Prev in Thread] Current Thread [Next in Thread>