question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

[Button][Checkbox] Allow receiving focus when disabled

See original GitHub issue

Duplicates

  • I have searched the existing issues

Latest version

  • I have tested the latest version

Summary 💡

focusableWhenDisabled prop for UnstyledButton has been recently implemented (#32090). The docs claim:

Similarly to the native HTML <button> element, the ButtonUnstyled component can’t receive focus when it’s disabled. This may reduce its accessibility, as screen readers won’t be able to announce the existence and state of the button.

The focusableWhenDisabled prop lets you change this behavior. When this prop is set, the underlying button does not set the disabled prop. Instead, aria-disabled is used, which makes the button focusable.

This should be used whenever the disabled button needs to be read by screen readers.

The same reasoning should be applicable to the MUI Button and Checkbox components

Examples 🌈

See https://mui.com/base/react-button/#focus-on-disabled-buttons

Motivation 🔦

Make <Button disabled /> and <Checkbox disabled> accessible

Issue Analytics

  • State:open
  • Created a year ago
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
michaldudakcommented, Sep 1, 2022

Work on this has already been started in #27719

0reactions
jmcacommented, Aug 31, 2022

Btw, as a workaround, you can add the aria-disabled prop and the Mui-disabled class in order to achieve the experience you want. See https://codesandbox.io/s/broken-cache-5ffve3?file=/demo.tsx

As an additional note, since this won’t block tabbing onto the element and clicking the enter key, you might also want to nil out the relevant handlers (like onClick for instance).

Read more comments on GitHub >

github_iconTop Results From Across the Web

Disabel/Enable button based on if checkbox is checked or ...
You can work on something like this. const checkbox = document.getElementById('myCheckbox') const planbtn = document.
Read more >
Should disabled elements be focusable for accessibility ...
Regarding the focus issue, generally it is not a good idea to allow visible disabled elements to gain focus - focus implies the...
Read more >
Accessibility and usability considerations for disabling buttons ...
HTML buttons and inputs accept a Boolean disabled attribute. This stops the element from receiving events like clicks and keyboard focus.
Read more >
Tabbing through form never gives focus to radio buttons or c
Hello, I'm having an issue where when I have either radio buttons or checkboxes on a form in Angular they never gain focus...
Read more >
aria-readonly - Accessibility - MDN Web Docs
If the non-changeable value shouldn't be able to receive focus, use aria-disabled instead. Note: When using semantic HTML form controls, ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found