|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Autonumbering with XSLT
>
> <xsl:for-each select="//TABLE">
> <xs:value-of select="position()"/>
> </xsl:for-each>
>
> For this I get back (1,2,3,4,5) as all the <TABLE> elements
> belong to the node-list created by "//TABLE" and position()
> returns the location in the node-list not in the parent node.
> What I really want back is (1,2,1,2,3).
>
> Any suggestions?
>
<xsl:for-each select="DB">
<xsl:for-each select="TABLE">
<xs:value-of select="position()"/>
</xsl:for-each>
</xsl:for-each>
Alternatively, use xsl:number, or count(preceding-sibling::*).
Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








