RE: [xsl] setting attributes based on values

Subject: RE: [xsl] setting attributes based on values
From: "Clapham, Paul" <pclapham@xxxxxxxxxxxxx>
Date: Thu, 17 May 2001 15:58:12 -0700
This doesn't work:
        <input name="{name}" type="{type}" value="{value}"/>
        <xsl:if test="checked='true'">
            <xsl:attribute name="checked">true</xsl:attribute>
        </xsl:if>

But maybe this will:
        <input name="{name}" type="{type}" value="{value}">
        <xsl:if test="checked='true'">
            <xsl:attribute name="checked">true</xsl:attribute>
        </xsl:if>
        </input>

PC2

-----Original Message-----
From: Alex Black [mailto:enigma@xxxxxxxxxxxxxxxx]
Sent: May 17, 2001 15:15
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: [xsl] setting attributes based on values

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


Current Thread