xsl-list
[Top] [All Lists]

RE: [xsl] position() outside for-each

2007-11-13 15:58:39
What position are you trying to determine, exactly? Do you have any
sorting applied when you apply-templates to /root/item? Are you trying
to determine the position of the node within its parent node, the
position of the node within the document, the position of the node
within the context node-set...? There's lots of different ways you can
ask for the position of a node, but the position() function will follow
a very specific algorithm every time. You can retrieve a variety of
different results with the <xsl:number/> element:

<xsl:template match="/root/item">
  <xsl:number level="single" count="item" format="1:"/>
  <xsl:value-of select="@id"/>
</xsl:template>

~ Scott

-----Original Message-----
From: Charles Ohana [mailto:charles(_dot_)ohana(_at_)buongiorno(_dot_)com] 
Sent: Tuesday, November 13, 2007 4:39 PM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] position() outside for-each

Hello,
I'm trying to determine the position of a node, the issue is that it's 
within a for-each loop.
See snippet below to see what I'm trying to accomplish. Thanx

<root>
   <item id="XYZ" />
   <item id="A23" />
   <item id="z49" />
   <item id="X12" />
</root>

<xsl:template match="/root/item">
   <xsl:value-of select="position()" />
   <xsl:text>:</xsl:text>
   <xsl:value-of select="@id" />
</xsl:template> 


--~------------------------------------------------------------------
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>
--~--


--~------------------------------------------------------------------
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>