|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: XSLT problem (last line corrected)
Alex - It's tough to tell exactly what's wrong from what you'be posted.
But, if this code works:
<td>
<xsl:value-of select="$ClassName"/>
</td>
Then try something like this to create the class attribute and value:
<td>
<xsl:attribute name="class">
<xsl:value-of select="$ClassName"/>
</xsl:attribute>
</td>
- Mark
-----Original Message-----
From: Alex Genis [mailto:agenis@xxxxxxxx]
Sent: Monday, June 25, 2001 11:29 AM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject: XSLT problem (last line corrected)
Hi everybody !
What's wrong with my syntax ?
The code :
<TR>
<TD class="C1">
abc
</TD>
<TD class="C2">
xyz
</TD>
</TR>
works absolutely properly
but the code :
<TR>
<xsl:variable name="ClassName">
<xsl:choose>
<xsl:when test="position() mod 2 = 0">
C1
</xsl:when>
<xsl:otherwise>
C2
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<td class="{$ClassName}">
abc
</td>
<td class="{$ClassName}">
xyz
</td>
</TR>
does not work correctly (the system does not pick up any of the
classes
above)
even though the code :
<td>
<xsl:value-of select="$ClassName"/>
</td>
shows correct value of the variable (C1 or C2 respectively) ???
Thanks a lot in advance. Alex.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
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








