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
required on a radio button does not take other buttons in the group into account. It will result in a validation error if that specific radio is unchecked. Instead, it should only report a validation error if none of the radio buttons in the radio button group are checked.
Validity is only updated when the value or checked state changes, so if a radio button with required is initially unchecked and remains unchecked, it will remain marked valid, even though it violates the required constraint.
🐛 Bug Report
required
on a radio button does not take other buttons in the group into account. It will result in a validation error if that specific radio is unchecked. Instead, it should only report a validation error if none of the radio buttons in the radio button group are checked.Validity is only updated when the value or checked state changes, so if a radio button with
required
is initially unchecked and remains unchecked, it will remain marked valid, even though it violates therequired
constraint.Note that the expected behavior of required radio buttons is that
required
specified on any radio button applies to the group of buttons as a whole.The text was updated successfully, but these errors were encountered: