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

Re: [xsl] Autonumbering with XSLT


Subject: Re: [xsl] Autonumbering with XSLT
From: Peter Finch <peter@xxxxxxxxxxx>
Date: Tue, 07 Jan 2003 01:12:23 +1100

Cheers :-)

David Carlisle wrote:
You could use xsl:number, which is designed to do exactly this kind of
thing, or if you want to avoid xsl:number  you could do

<xsl:for-each select="//TABLE">
  <xs:value-of select="1+count(preceding-sibling::TABLE)"/>
</xsl:for-each>

or

<xsl:for-each select="//DB">
<xsl:for-each select=".//TABLE">
  <xs:value-of select="position()"/>
</xsl:for-each>
</xsl:for-each>

or ...

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star Internet. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list



--
   ___
  (OvO)
  /:::\
  \|:|/
/--m-m--------------------------------+
| Peter Finch (p.finch@xxxxxxxxxxx)   |
| Home Planet Software                |
| http://www.homepla.net/             |
/-------------------------------------/




XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list




Current Thread