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?



> 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

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