|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Problem with xsl:copy
> The resulting xml file I am getting is:
of course without showing us the input file it;'s a bit hard to guess...
but
????? <xsl:copy>
that makes a tr node
? <xsl:for-each select="td">
??? <xsl:attribute name="class"
that (repeadedly) adds a class attribute to this tr node once for each
td in the source.
You presumably want something like
<xsl:template match="tr[td[not(a) and text() != 'Data not available' and not(@*)]]">
????? <xsl:copy>
?? <xsl:choose>
?? <xsl:when test="position() mod 2 = 0">
?? <xsl:for-each select="td">
<td class="evenRowStyle">
??? <xsl:apply-templates select="node()|@*"/>
</td>
</xsl:for-each>
?? </xsl:when>
?? <xsl:otherwise>
?? <xsl:for-each select="td">
<td class="oddRowStyle">
??? <xsl:apply-templates select="node()|@*"/>
</td>
</xsl:for-each>
?? </xsl:otherwise>
?? </xsl:choose>
???? </xsl:copy>
</xsl:template>
_____________________________________________________________________
This message has been checked for all known viruses by Star Internet
delivered through the MessageLabs Virus Scanning Service. For further
information visit http://www.star.net.uk/stats.asp or alternatively call
Star Internet for details on the Virus Scanning Service.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








