Question
Deselect radio buttons
Is there a way to deselect all the radio buttons in a group?
what I'm specifically trying to do is, once the user has selected
the radio button and clicked my button to proceed to the next
question in my quiz, it will load a new question and new radio
button labels/values. that part works, but the radio button
previously selected is still selected. I have tried:
radioGroup.selection = null:
radio_btn0.selected = false; (and repeat for the other 3)
and the same as above in a for loop.
None of this seems to work. Is this possible, or will one always be selected once the user interacts with the radio group the first time?
radioGroup.selection = null:
radio_btn0.selected = false; (and repeat for the other 3)
and the same as above in a for loop.
None of this seems to work. Is this possible, or will one always be selected once the user interacts with the radio group the first time?