I'm working on a typing system for a paper form, where I have some radiobutton options, for example:
<fieldset>
<legend> Disponibilidade de energia elétrica? </legend>
<label for="sim"> <input type="radio" name="energia" value="sim">Sim</label>
<label for="nao"> <input type="radio" name="energia" value="nao">Não</label>
</fieldset>
The case is that, eventually, a typist accidentally clicks on a radio to answer a question on the form, however, the question is blank on paper, and undoing the selection.
The default radiobutton group behavior is to allow you to change between options and not to deselect the field.
It also could not be a Clean Form function, as the typist would have to re-type all other fields.
Any ideas? Has anyone had the same problem? How to give a reset in the group "energy", for example?