[Home] [By Thread] [By Date] [Recent Entries]
I need the position of the (item) node. In my case (the snippet I sent) I'm
expecting the following output.
1 : XYZ 2 : A23 3 : z49 4 : X12 Thanx ----- Original Message ----- From: "Scott Trenda" <Scott.Trenda@xxxxxxxx> To: <xsl-list@xxxxxxxxxxxxxxxxxxxxxx> Sent: Tuesday, November 13, 2007 5:57 PM Subject: RE: position() outside for-each
<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.ohana@xxxxxxxxxxxxxx] Sent: Tuesday, November 13, 2007 4:39 PM To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx Subject: 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>
|

Cart



