You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It looks like the "for" attribute in the "label" tag is the same value for all radio buttons in a control-group. As a result, clicking the label doesn't select the corresponding radio button.
The text was updated successfully, but these errors were encountered:
I noticed it as well. The result for the user is when you click a label it does not change to the corresponding radio button. The following is the suggested html taken from Twitter Bootstrap. Notice that labels have no for attributes. Can we achieve that?
<labelclass="radio"><inputtype="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
Option one is this and that—be sure to include why it's great
</label><labelclass="radio"><inputtype="radio" name="optionsRadios" id="optionsRadios2" value="option2">
Option two can be something else and selecting it will deselect option one
</label>
It looks like the "for" attribute in the "label" tag is the same value for all radio buttons in a control-group. As a result, clicking the label doesn't select the corresponding radio button.
The text was updated successfully, but these errors were encountered: