|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: Problems displaying xsl:value-of within 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
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








