[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: counter in xsl

Subject: Re: counter in xsl
From: Markus Spath <mspath@xxxxxxxx>
Date: Fri, 08 Feb 2002 12:07:04 +0100
create a counter in xsl


thenewmatrix@xxxxxxxx wrote:

How can i create a counter into xsl due to insert alternate color in
table-row???



there is an implicit 'counter' on nodesets just being processed; you can access the current position with position() and check whether it is odd or even.

...
<xsl:template match="...">
  <xsl:choose>
    <xsl:when test="(position() mod 2) = 0">
      <tr class="even">
    </xsl:when>
    <xsl:otherwise>
      <tr class="odd">
    </xsl:otherwise>
  </xsl:choose>
  <td>...</td>
  ...
  </tr>
</xsl:template>
...


hope that helps Markus





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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.