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!
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 = [];
Thank you! I will give it a shot!
Update:
It works! Thank you Nikita!