[RESOLVED] How to unselect Radio Button selection

Hiya,

I have a 2 in 1 form and I have some validation in place which clears all fields but the problem I am having is that I can't clear/deselect the Single Choice radio button selection. How can I achieve this?

Thank you!

Dear @DryChips,
You can try it with the code like this:
fd.field('ChoiceRadio').clear();

Or like this:
fd.field('ChoiceRadio').value = [];

1 Like

Thank you! I will give it a shot! :slight_smile:

Update:

It works! Thank you Nikita!