Description: How do we get groups of radio buttons (where only one in the group can be clicked at a time) to display as empty when the user first opens the PDF form file?
Solution:
There are two options that we could empty the radio button:
- We could go to Form > click Reset Form to display the radio buttons as empty. Please note that click on Reset Form will reset the whole form.
- We could use Javascript to add a push button to clear the selection of the radio button:
Go to Form > Radio button to add a radio button named “Radio Button0”; Go to Form > Push Button to add a Push button >open Properties > Actions >Run a Javascript, then add the following Javascript:
var f = this.getField("Radio Button0");
f.checkThisBox(0,false);