Perfect! Thank you. There was another question in there too but I will post in a new question.
Main Topics
Browse All TopicsI have a CF form, in flash format, that if the user selects yes (or specify own value) to one question (from a radio button) that enables a list of questions for the end user to complete. If the end user selects no, then those questions stay hidden.
Also, if the user selects 'specify own value' on the form, it enables the text box for the user to input the value. If the user selects the 'yes' or 'no' selection, the textbox stays disabled.
So in my example, if the user selects the 'Yes' or 'Specify own value' in question #2, then I want them to answer questions #3 and #4 as well. Questions 1 and 5 would need to be answered regardless. And in questions #2 through #5, the strA## text box would be disabled unless they select 'specify own value'.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: ZvonkoPosted on 2009-06-17 at 13:40:59ID: 24652374
Check this:
ht=0" > ht=0" > ht=22" >
ht=0" > ht=0" > ht=22" >
ht=0" > ht=0" > ht=22" >
ht=0" > ht=0" > ht=22" >
<cfform name="myform" format="flash" width="500" onClick="alert('33')" >
<cfinput type="text" name="strA01">
<cfinput type="radio" label="Yes" name="bitA02" value="1" onClick="_root.strA02.heig
<cfinput type="radio" label="No" name="bitA02" value="0" onClick="_root.strA02.heig
<cfinput type="radio" label="Specify own value" name="bitA02" value="2" onClick="_root.strA02.heig
<cfinput type="text" label="" name="strA02" height="0" >
<cfinput type="radio" label="Yes" name="bitA03" value="1" onClick="_root.strA03.heig
<cfinput type="radio" label="No" name="bitA03" value="0" onClick="_root.strA03.heig
<cfinput type="radio" label="Specify own value" name="bitA03" value="2" onClick="_root.strA03.heig
<cfinput type="text" label="" name="strA03" height="0" >
<cfinput type="radio" label="Yes" name="bitA04" value="1" onClick="_root.strA04.heig
<cfinput type="radio" label="No" name="bitA04" value="0" onClick="_root.strA04.heig
<cfinput type="radio" label="Specify own value" name="bitA04" value="2" onClick="_root.strA04.heig
<cfinput type="text" label="" name="strA04" height="0" >
<cfinput type="radio" label="Yes" name="bitA05" value="1" onClick="_root.strA05.heig
<cfinput type="radio" label="No" name="bitA05" value="0" onClick="_root.strA05.heig
<cfinput type="radio" label="Specify own value" name="bitA05" value="2" onClick="_root.strA05.heig
<cfinput type="text" label="" name="strA05" height="0" >
<cfinput type="submit" name="btnSubmit" value="Submit">
</cfform>