Hi,
I have this code in my
JSP:
<html:select property = "combo" onchange="dispLayer('layer1')">
<logic
resent name = "qvalues" >
<logic:iterate id = "qvalue" name = "qvalues" >
<html
ption value = "<%=qvalue%>" >
<bean:write name = "qvalue" property = "value" />
</html
ption>
</logic:iterate>
</logic
resent>
</html:select>
all the contents of combo box are generated dynamically. I am not able to get html
ption value. I need this value becoz depending on this value my javascript will show and hides a layer. Please help me out with this??
Thanks,