In my XSL i have included a dropdown box which have values like,
one
two
three
four
five
If I select the value "one", then the template "one" should be applied.
<xsl:template match="one">
<!-- code goes here -->
</xsl:template>
like wise two, three four and five should match their appropriate templates. Is it possible using Javascript, so that onchange() method can get the selected value and call its own template.
If there is any other way, please suggest me.
Thanks, jeyaa