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: Alternating table row colors with recursion


> I know there are plenty of response to how to make table rows 
> alternate
> but all the answers apply under the assumption that you are 
> not changin
> nodesets. My problem is i'm using recursion so my nodeset 
> keeps changing.

Give the template a parameter:

<xsl:param name="isOdd" select="true()"/>

and call it like this:

<xsl:apply-templates select=".....">
   <xsl:with-param name="isOdd" select="not($isOdd)"/>
</xsl:apply-templates>

Mike Kay 


 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]