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

Re: Problems displaying xsl:value-of within quotes

Subject: Re: Problems displaying xsl:value-of within quotes
From: Richard Light <richard@xxxxxxxxxxxxxxxxx>
Date: Fri, 16 Jun 2000 14:35:40 +0100
displaying quotes
In message <20000616130356.22219.qmail@xxxxxxxxxxx>, David James
<nicolsoft@xxxxxxxxxxx> writes
>I have written the following XSLT to display a list of checkboxes
>
><xsl:for-each select="data">
>
><TD><INPUT TYPE="CHECKBOX" NAME="item1"><xsl:value-of 
>select="@label"/></INPUT></TD>
>
></xsl:for-each>
>
>which is fine, but I want to change the NAME="item1" to NAME="<xsl:value-of 
>select="@name"/>" but this does not work.

Use xsl:attribute:

<TD>
  <INPUT TYPE="CHECKBOX">
    <xsl:attribute name="NAME">
      <xsl:value-of select="@name"/>
    </xsl:attribute>
    <xsl:value-of select="@label"/>
  </INPUT>
</TD>

should do it.

Richard Light
SGML/XML and Museum Information Consultancy
richard@xxxxxxxxxxxxxxxxx


 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.