Hi there,
We have a form with a radio button group, where any one of the buttons may already be selected. We want to prevent a user from selecting one of the radio buttons, BUT we want to be able to 'deselect' that radio button by clicking on any other radio. Like so:
Step 1: (initial page load)
- R1: enabled and clickable
- R2: disabled, but CHECKED
- R3: enabled and clickable
Step 2: user clicks R1
- R1: enabled and CHECKED
- R2: disabled, NOT CHECKED
- R3: enabled and clickable
Will the 'disabled' attribute allow this to take place?