Expand my Community achievements bar.

Radio Button Group - "Deselect"

Avatar

Level 1

I have a radio group of 3 buttons. As designed, you can choose only one as the other become blank.  I would like the option of the user "deselcting" and leaving all radio button blank if the accidentally choose one.

Is that possible?

Thank You

1 Reply

Avatar

Former Community Member

You can try using the resetData function. You woudl need an event to fire this code (maybe a button event). Then you can add this code to the click event:

xfa.host.resetData("RadioButtonGroup Name");

This command will cause the RadioButtonGroup to return to its initial state.

Paul