Subject: RE: Alternating table row colors with recursion
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Tue, 28 Nov 2000 16:19:56 -0000
|
> 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
|