Microsoft
Software
Hardware
Network
Question : Deselect radio button in a ColdFusion flash form?
I have a form with a checkbox that if clicked disables the form fields. If a user happens to check this box AFTER having filled out any of the fields I want the fields to be reset/blanked. This was easy enough for checkboxes:
mycheckbox.selected = false;
and for text inputs:
mytextfield.text = "";
But I can't get this to work for radio buttons. I've tried all of the following to no avail:
myradiobutton.selected = false;
myradiobutton[0].selected = false;
myradiobutton[1].selected = false;
myradiobutton.checked = false;
...etc.
Is this possible?
Answer : Deselect radio button in a ColdFusion flash form?
>> I've tried all of the following to no avail
Those reference the wrong object. Use:
myradiobutton.selection.se
lected = false;
For:
<cfinput type="radio" name="myradiobutton" checked="true" value="yes"> Yes
.....
Random Solutions
How do I avoid double quotation marks by using comma in Acrobat Acrobat v.9.x
Customize left_col.phtml properly in Magento - XML beginner!
Displaying GroupWise contacts in Exchange address book?
Attrubute 'width' is considered outdated. A newer construct is recommended
Server Error: The signature on the certificate was found to be invalid. Check the log file for details.
run time error: you entered an expression that has no value
checking login & pass with curl
Should Sys Admins (Domain Admins) also have user accounts?
Microsoft Outlook 2007 is pulling duplicate emails from free hotmail live server - how can I prevent this, its driving me mad.
PHP 5.3.2 installation problem on Vista IIS7