|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Problem setting variable in if statement
I am very new to xsl/xslt and have a basic problem. I am setting a style
sheet color based on a condition.
I'd like the color to be a variable value, like
<xsl:variable name="statColor" select="#33cc33">
and set this variable in the if/choose condtion.
Then recall it like
<span style="color:{$statColor}"><xsl:value-of select="status"></span>
I have it like this now, but want to simplfiy it:
<xsl:choose>
<xsl:when test="status='undelivered'"> <span
style="color:#ff0000"> <xsl:value-of select="status"/></span>
</xsl:when>
<xsl:when test="status='inprogress'"> <span style="color:#33cc33">
<xsl:value-of select="status"/></span> </xsl:when>
<xsl:when test="status='delivered'"> <span style="color:#0033ff">
<xsl:value-of select="status"/></span> </xsl:when>
<xsl:when test="status='escalated'"> <span style="color:#ffff33">
<xsl:value-of select="status"/></span> </xsl:when>
<xsl:otherwise> <span style="color:#000000"> <xsl:value-of
select="status"/></span></xsl:otherwise>
</xsl:choose>
I cant seem to get it to work.
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








