[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

[xsl] position() outside for-each


Subject: [xsl] position() outside for-each
From: "Charles Ohana" <charles.ohana@xxxxxxxxxxxxxx>
Date: Tue, 13 Nov 2007 17:38:53 -0500

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>



Current Thread