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
According what i could understand, paper-radio-group allows user to select only one radio button from a set and contains the buttons altogether. If you add div inside the group, its more likely breaking the radio button into multiple sets, allowing multiple clicks possible.
Adding div end tags outside paper-radio-group or not adding anything will not hurt the paper-radio-group.
paper-radio-group can only select direct paper-radio-button children. It does not support selecting nested children (see PolymerElements/iron-selector#42 for the underlying issue)
paper-radio-group single select gets messed up if anything added around a radio button. e.g
a div added in one of the radio buttons
paper-radio-group selected="small">
div>paper-radio-button name="small">Small/paper-radio-button>
paper-radio-button name="medium">Medium/paper-radio-button>
paper-radio-button name="large">Large/paper-radio-button>
/paper-radio-group>
The text was updated successfully, but these errors were encountered: