Well radio buttons are mutually exclusive so it can only be on once clicked. You can call setValue("nameofItem"); to change its status however and clearValue() to reset. and getValue() will tell you the name of the radio button selected, since they are mutally exclusive you can assume the rest are off.
Comment