?
=?ISO-8859-15?Q?Joachim_Wei=DF?=
Hi,
does anybody know a simple solution for this XSL-Problem:
<xslaram name='controlName'>theName</xslaram>
<xslaram name='otherOptions'><![CDATA[size="5" value="45"]]></xslaram>
these parameters shoul result in sth. like
<input type="text" name="theName" size="5" value="45" />
the approach is
<xsl:element name="input>
<xsl:attribute name="type">text</xsl:attribute>
<xsl:attribute name="name"><xsl:value-of select="$controlName"
/></xsl:attribute>
how do i get my $otherOptions in here?
</xsl:element>
TIA
Jo
does anybody know a simple solution for this XSL-Problem:
<xslaram name='controlName'>theName</xslaram>
<xslaram name='otherOptions'><![CDATA[size="5" value="45"]]></xslaram>
these parameters shoul result in sth. like
<input type="text" name="theName" size="5" value="45" />
the approach is
<xsl:element name="input>
<xsl:attribute name="type">text</xsl:attribute>
<xsl:attribute name="name"><xsl:value-of select="$controlName"
/></xsl:attribute>
how do i get my $otherOptions in here?
</xsl:element>
TIA
Jo