[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] tu put one value into the radio value


Subject: RE: [xsl] tu put one value into the radio value
From: "XSLList" <xsllist@xxxxxxxxxxxxx>
Date: Mon, 3 Mar 2003 21:40:51 -0500

Use an Attribute Value Template.  See
http://www.dpawson.co.uk/xsl/sect2/N1575.html for more information.

<input type="radio" name="votacionvalor" value="{nombre}"/>

The other solution is to use xsl:attribute, as in:

<xsl:element name="votacionvalor">
	<xsl:attribute name="value">
		<xsl:value-of select="nombre"/>
	</xsl:attribute>
</xsl:element>

The first method is easier to read.

Jeff

>i have this:
><input type="radio" name="votacionvalor" value="" /><br />
>in the input value i want to put the value of:
><xsl:value-of select="nombre"/>
>if i try to meke the next it produces error:
><input type="radio" name="votacionvalor" value="<xsl:value-of
>select="nombre"/>" />
>
>how can i sove it?
>thanks


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



Current Thread