Quote:
I have a radio group item that I would like to display with two radio buttons, that, if either radio button is selected, the radio group item will, of course, take on that radio button's assigned value. If neither radio button is selected, I would like the value of the radio group to be a null value. How do I accomplish this?
P. McD. (name removed)
University of Illinois
College of Medicine
Infomation Resources
and I said
Quote:
Two options:
1) Use check boxes instead. Radio buttons/group require one to be selected. Be prepared to handle (via code, e.g., a when-checkbox-changed trigger) the user who selects both checkboxes.
2) Add a third radio button which indicates your "no choice made" option.
and someone else replied with
Quote:
add a third radio button.
set it's visible property to no
Don't set the value property.
And define it as the first item or the radio group.
and that was followed by
Quote:
That works as long the user NEVER selects one of the two that are displayed. "Oops, I don't want either one of those. Hey, how do you unset them?" That's bad design.
I've read and answered thousands of questions here and elsewhere. What is the probability two questions with virtually the same question/setup appear in the same day on at least two different forums? First time I've ever seen it happen, not impossible, but pretty darn remote considering the similarity. That's all.