Hi,
i'm trying to fill an html-combobox within a xslt-stylesheet. My Code actually looks like this, but i can't get things working...
Any ideas?
---------------------------------------
Visit me @:
i'm trying to fill an html-combobox within a xslt-stylesheet. My Code actually looks like this, but i can't get things working...
Code:
<form name="docform" >
<xsl:element name="select">
<xsl:attribute name="name">selModelle</xsl:attribute>
<xsl:attribute name="id">selModelle</xsl:attribute>
<xsl:for-each select="/java/object/void/string">
<xsl:element name="option">
<xsl:attribute name="value">
<xsl:text>[URL unfurl="true"]http://www.google.com/</xsl:text>[/URL]
</xsl:attribute>
<xsl:value-of select="."/>
</xsl:element>
</xsl:for-each>
</xsl:element>
<input type="button" value="Go" onClick="jumptolink(document.docform.selModelle.selectedIndex)"/><br/>
</form>
---------------------------------------
Visit me @: