Hi all,
In my
struts application, I would like to disable / enable an html:select box based on values selected from another html:select. I am using the following code for enable / disable.
<bean

efine id="myForm" name="myActionForm" type="org.myproj.view.myActionForm" />
<html:select property="select_name" size="1"
disabled='<bean:write name="myForm" property="disableNameFlag"/>' onchange="findAge()">
<html

ption value="0">--- Select ---</html

ption>
<logic

resent name="myActionForm" property="childNameList">
<html

ptionsCollection name="myActionForm" property="childNameList"/>
</logic

resent>
</html:select>
I am setting the value of disableNameFlag to true in the action form bean and <bean:write name="myForm" property="disableNameFlag"/> prints value as true. But html:select is not disabled. Please help.
Thanks.
roshni