M
Matt B
I have a need to alternate output row colour where not every row in the
sequence is output, so I cannot base the colour on whether position() is odd
or even.
e.g.
....
<xsl:for-each select="result">
<xsl:if test="@status = 'Pass'">
<tr><td>@name</td></tr>
</xsl:if>
<xsl:for-each>
....
Any helpful suggestions would be welcome.
sequence is output, so I cannot base the colour on whether position() is odd
or even.
e.g.
....
<xsl:for-each select="result">
<xsl:if test="@status = 'Pass'">
<tr><td>@name</td></tr>
</xsl:if>
<xsl:for-each>
....
Any helpful suggestions would be welcome.