Hi there,
I have a question: is is possible to uncheck a radiobutton?
The form I´m working is to be filled electronically or if you want you can print it, so if by mistake you click on a radio I´d like to know if you can click it again to uncheck it (I know that you could close and open the form again, but you would have to fill it all again)
Any ideas?
Thanks!
Solved! Go to Solution.
Views
Replies
Total Likes
Use check boxes. Change the appearance to Sunken Circle. Let's say the check boxes are named CheckBox1 and CheckBox2. In the change event of CheckBox1 put:
CheckBox2.rawValue=0;
and for CheckBox2:
CheckBox1.rawValue=0;
Kyle
Views
Replies
Total Likes
Use check boxes. Change the appearance to Sunken Circle. Let's say the check boxes are named CheckBox1 and CheckBox2. In the change event of CheckBox1 put:
CheckBox2.rawValue=0;
and for CheckBox2:
CheckBox1.rawValue=0;
Kyle
Views
Replies
Total Likes
Kyle, thanks again!
I´ve thought that option, but I need that they work as RadioButtons. By replacing them for ChcekBoxes I´d have to code that If I choose YES I can´t choose NO and vice versa, or Am i missing something?
Views
Replies
Total Likes
Did you try the code I suggested putting in the change event for each check box?
Kyle
Views
Replies
Total Likes
mi mistake! thank you!
Views
Replies
Total Likes
For radio buttons you can use "" to reset the value: radiobuttonlist.rawValue = "";
Views
Replies
Total Likes
I need help with the same thing. I have a form with a group of two radio buttons. Users have the option of selecting one or the other but I need to give them the ability to de-select a radio button in case they complete the wrong section (which happens all the time). Where do I enter the above code? Any help is appreciated. I'm still pretty new at using Livecycle Designer.
Views
Replies
Total Likes
you have to open de Script Editor (Window > Script Editor or Ctrl+Shift+F5), then select the object oyu want to have the code, in this example would be the checkbox and paste the code in the script editor
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies
Views
Likes
Replies