Radio button selected-cannot clear

F

Farmboy

We have forms with 2 radio buttons [o Yes o No], if a user accidently
selects one, it cannot be unselected [neither is correct]. Any advice on how
a radio button group can be set back to all unselected?

Thanks in advance.
 
K

Kolten

You can use a button, on page load, or the radio button set itself. whatever
you like. Just set the field to "false" - that will clear it.
 
F

Farmboy

Thank you, but this is a single object with a o Yes o No radio button group;
the end user inadvertantly selected one of the 2 values, and now cannot get
the radio button group to have both values unselected. Do you have any
insights on how this is accomplished?

BD

Swathi (GGK Tech) said:
Hi,

If the both radio buttons bind to the same field. Then if you select one the
other one automatically unselected. IF you bind both radio buttons to
different fields then you need add rules to those radio buttons. For first
button if the value is true then set the second radio button to false. Do the
same for the other button also (i.e., if second button value is true then set
the first radio button to falseee).

--
Swathi Porandla
http://www.ggktech.com



Farmboy said:
We have forms with 2 radio buttons [o Yes o No], if a user accidently
selects one, it cannot be unselected [neither is correct]. Any advice on how
a radio button group can be set back to all unselected?

Thanks in advance.
 
R

Ricky Waldron

You could set up a reset button on the page for the user to click in case
the wrong radio button was selected.



From that button, you can set up a rule that when clicked, it will set the
Radio Button's valid to "". This will reset the radio button to NULL and
neither one of the buttons should be clicked.



Let me know if that works, I actually just had to do this about 30 mins. Ago
on a decision tree project.



Ricky Waldron



Farmboy said:
Thank you, but this is a single object with a o Yes o No radio button
group;
the end user inadvertantly selected one of the 2 values, and now cannot
get
the radio button group to have both values unselected. Do you have any
insights on how this is accomplished?

BD

Swathi (GGK Tech) said:
Hi,

If the both radio buttons bind to the same field. Then if you select one
the
other one automatically unselected. IF you bind both radio buttons to
different fields then you need add rules to those radio buttons. For
first
button if the value is true then set the second radio button to false. Do
the
same for the other button also (i.e., if second button value is true then
set
the first radio button to falseee).

--
Swathi Porandla
http://www.ggktech.com



Farmboy said:
We have forms with 2 radio buttons [o Yes o No], if a user accidently
selects one, it cannot be unselected [neither is correct]. Any advice
on how
a radio button group can be set back to all unselected?

Thanks in advance.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top