RE: [xsl] <xsl:param> or <xsl:variable> question

Subject: RE: [xsl] <xsl:param> or <xsl:variable> question
From: "Kienle, Steven C [IT/0200]" <steven.c.kienle@xxxxxxxxxxxxx>
Date: Tue, 26 Aug 2003 11:23:03 -0400
This sounds like a simple xsl:if with an xsl:attribute solution:

    <font>
        <xsl:if text="@style = 'on'">
            <xsl:attribute name="color">red</xsl:attribute>
        </xsl:if>

        <!-- produce text here -->

    </font>

The xsl:attribute element allows you to add an attribute to the parent
element.

I may have misunderstood you need, but I think this is what you'll want.

	Steve

-----Original Message-----
From: Abhijit Junnare [mailto:mavlaabhi@xxxxxxxxx]
Sent: Tuesday, August 26, 2003 11:09 AM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] <xsl:param> or <xsl:variable> question


Hi,
I want to set the font-color according depending on
the value of attribute of the element. For example I
woule like to set the font-color to red if the element
has an attribute 
style="on"
or font-color to black if element has an attribute 
style="off"

I have been trying to define a parameter using
xsl:param and then using it but cant get it right. Is
there a way to set the value of parameter using some
<xsl:if> or <xsl:when> constructs.
Your help is really appreciated.
Thanks in advance.
Abhi


This communication is intended solely for the use of the addressee and may
contain information that is legally privileged, confidential or exempt from
disclosure.  If you are not the intended recipient, please note that any 
dissemination, distribution, or copying of this communication is strictly 
prohibited.  Anyone who receives this message in error should notify the 
sender immediately and delete it from his or her computer.


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread