Hi,
does anybody know a simple solution for this XSL-Problem:
<xsl:param name='controlNa me'>theName</xsl:param>
<xsl:param name='otherOpti ons'><![CDATA[size="5" value="45"]]></xsl:param>
these parameters shoul result in sth. like
<input type="text" name="theName" size="5" value="45" />
the approach is
<xsl:element name="input>
<xsl:attribut e name="type">tex t</xsl:attribute>
<xsl:attribut e name="name"><xs l:value-of select="$contro lName"
/></xsl:attribute>
how do i get my $otherOptions in here?
</xsl:element>
TIA
Jo
does anybody know a simple solution for this XSL-Problem:
<xsl:param name='controlNa me'>theName</xsl:param>
<xsl:param name='otherOpti ons'><![CDATA[size="5" value="45"]]></xsl:param>
these parameters shoul result in sth. like
<input type="text" name="theName" size="5" value="45" />
the approach is
<xsl:element name="input>
<xsl:attribut e name="type">tex t</xsl:attribute>
<xsl:attribut e name="name"><xs l:value-of select="$contro lName"
/></xsl:attribute>
how do i get my $otherOptions in here?
</xsl:element>
TIA
Jo
Comment