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: <xsl:value-of ...> as value of HTML attribute


Toivo Lainevool wrote:
>The problem is that it isn't legal to include an element inside of a
attribute
>value.  You need to use the xsl:attribute and xsl:element elements, like so:
>
><xsl:template match="Code">
>    <xsl:element name="option">
>        <xsl:attribute name="value">
>             <xsl:value-of select="Effect"/>
>        </xsl:attribute>
>        <xsl:value-of select="Display"/>
>    </xsl:element>
></xsl:template>

Or, alternatively, an attribute-value template.  Place the 'select'
expression of the xsl:value-of that you want to be able to write in curly
braces (e.g. {Effect}) within the attribute to achieve the same effect.

<xsl:template match="Code">
    <option value="{Effect}">
        <xsl:value-of select="Display"/>
    </option>
</xsl:template>

There's also no need to use xsl:element unless you want to.  It works
perfectly well to do:

<xsl:template match="Code">
    <option>
        <xsl:attribute name="value">
             <xsl:value-of select="Effect"/>
        </xsl:attribute>
        <xsl:value-of select="Display"/>
    </option>
</xsl:template>

Cheers,

Jeni

Dr Jeni Tennison
Epistemics Ltd * Strelley Hall * Nottingham * NG8 6PE
tel: 0115 906 1301 * fax: 0115 906 1304 * email: jeni.tennison@epistemics.co.uk


 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]