You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cocoon.apache.org by Allan Kamau <hu...@yahoo.com> on 2001/06/03 15:46:51 UTC

Printing dynamic values to value properties in HTML controls and tags.

Hi all,
I have been trying to produce a radio button whose
value is automatically generated through XSL
tranformation. 
in my I have the following code in the .xsl


<xsl:template name="childDay3" match="*" >		
<td class="detailsColumn">
		<xsl:value-of select="." />
		<xsl:variable name="thisDay" select="./text()" />
		<<![CDATA[input type=radio name=day
value=']]><xsl:value-of select="./text()"
/><![CDATA[']]> />
</td>
</xsl:template>

After the transformation special characters get
escaped and the string gets printed on the browser
instead of producing the radio button am interested
in.

How could I overcome the is problem. and have the
radio button displayed and have the value of it's
value property to have been automatically generated by
the .xsl .
Thank you in advance.



__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail - only $35 
a year!  http://personal.mail.yahoo.com/

---------------------------------------------------------------------
Please check that your question has not already been answered in the
FAQ before posting. <http://xml.apache.org/cocoon/faqs.html>

To unsubscribe, e-mail: <co...@xml.apache.org>
For additional commands, e-mail: <co...@xml.apache.org>