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
{{ message }}
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.
Radio buttons are not multiselectable despite of "multi" property. That happens because, since tag 1.0.2, paper-radio-group.html implements "select" method. In older versions, that method has been called from "iron-selector/iron-multi-selectable.html"
Expected outcome
In this simple example: <paper-radio-group multi> <paper-radio-button name="a">a</paper-radio-button> <paper-radio-button name="b">b</paper-radio-button> </paper-radio-group>
and selecting both radio buttons, both remain selected.
Actual outcome
Only last element is selected.
Browsers Affected
Chrome
Firefox
Safari
The text was updated successfully, but these errors were encountered:
Similar issue. On your example, if you remove the name tags, the element works as expected, but as soon as you add name tags, multiselect goes berserk.
That would be a solution, but currently name is needed in order to work with selected-values (getting and setting). So, bug still persists.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Description
Radio buttons are not multiselectable despite of "multi" property. That happens because, since tag 1.0.2, paper-radio-group.html implements "select" method. In older versions, that method has been called from "iron-selector/iron-multi-selectable.html"
Expected outcome
In this simple example:
<paper-radio-group multi>
<paper-radio-button name="a">a</paper-radio-button>
<paper-radio-button name="b">b</paper-radio-button>
</paper-radio-group>
and selecting both radio buttons, both remain selected.
Actual outcome
Only last element is selected.
Browsers Affected
The text was updated successfully, but these errors were encountered: