I need either:
- Radio buttons that can be deselected OR
- Mutually exclusive checkboxes
Background info:
I have a repeater.
For each row in the repeater there is an associated document that can be either "Generated" or "Reprinted".
The user should be able to select up to one checkbox in any given row. After this, one button click will handle all of their selections in one pass.
When I search for "Mutually exclusive checkboxes", the common response is, "This is what radio buttons are for."
When I search for "Deselectable radio buttons", the common response is, "This is what check boxes are for."
Others have suggested custom JavaScript/ jQuery solutions but none in which the number of CheckBoxes/RadioButtons and their IDs are variable.
I find it hard to believe that this functionality isn't supported by ASP.NET controls. Has anyone faced this problem? Is there another control I could use or does this require a custom solution?
NOTE: The only third party software I have access to is Telerik's UI for ASP.NET AJAX, which doesn't contain an obvious solution.