This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: setting attributes based on values


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@turingstudio.com]
Sent: May 17, 2001 15:15
To: xsl-list@lists.mulberrytech.com
Subject: [xsl] setting attributes based on values

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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]