[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

SV: <xsl:value-of ...> as value of HTML attribute

Subject: SV: <xsl:value-of ...> as value of HTML attribute
From: "Nielsen, Anders Rolann" <annie@xxxxxxxxxx>
Date: Mon, 26 Jun 2000 08:00:50 +0200
xsl value of html
Dear Jeni and others!

First: Jeni is right about the semantics, but when it comes down to
performance, this is what works the best.

	<xsl:text disable-output-escaping="yes">&lt;option</xsl:text>
		<xsl:text> value="</xsl:text>
			<xsl:value-of select="Effect"/>
		<xsl:text>"</xsl:text>
	<xsl:text disable-output-escaping="yes">&gt;</xsl:text>
		<xsl:value-of select="Display"/>
	<xsl:text disable-output-escaping="yes">&lt;/option&gt;</xsl:text>

I have done some performance test, which shows some significant improvements
when You do it like above.

Regards
Anders Rolann

-----Oprindelig meddelelse-----
Fra: Jeni Tennison [mailto:jeni@xxxxxxxxxxxxxxxx]
Sendt: 24. juni 2000 12:07
Til: heather.lindsay@xxxxxxxxxxxxx
Cc: xsl-list@xxxxxxxxxxxxxxxx
Emne: 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@xxxxxxxxxxxxxxxx


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


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


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.