This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Detecting every other node?


I should of said I am using the Microsoft XSL parser. So how would do it
there.

-----Original Message-----
From: David Carlisle [mailto:davidc@nag.co.uk]
Sent: Friday, March 24, 2000 11:28 AM
To: xsl-list@mulberrytech.com
Subject: Re: Detecting every other node?



> This e-mail has been sent in confidence to the named addressee(
one of which is an automated system that sticks it on a public web
site.... 

> I am trying to apply a different template for every other row
The example of colouring alternating rows of a table is in the xslt
spec. There are other examples in the faq.


<xsl:choose>
<xsl:when test="position() mod 2 = 0"> do this ...
<xsl:otherwise> do something else> ....


David


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


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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]