I have written the following code for displaying radio button and dropdown lists in xsl , I want that on the click of the radio button ,the drop down list should be populated with some values .
Can you help me on that ??
Code:
td width="10%">
<xsl:element name="input">
<xsl:attribute name="type">radio</xsl:attribute>
<xsl:attribute name="name">ProductType</xsl:attribute>
<xsl:attribute name="value">Retail Product</xsl:attribute>
<xsl:attribute name="checked"/>
</xsl:element>
</td>
<td valign="top">
<select name="productlist" class="dropdown">
<xsl:element name="option">
<xsl:attribute name="value">Me</xsl:attribute>
</xsl:element>
</select>
</td>