sl-ember-components
sl-ember-components copied to clipboard
Why are we setting the disabled state of the children sl-radio components?
According to https://developer.mozilla.org/en-US/docs/Web/HTML/Element/fieldset, the disabled
property causes
the form controls that are its descendants, except descendants of its first optional
Given this, why are we setting the disabled state of the children sl-radio
components in initialize()
?
I don't think the radio-group component should be tagName='fieldset'. We should be following: http://getbootstrap.com/css/#checkboxes-and-radios. The radio-group tagName should probably be "div" and the disabled setting of children should remain.