Dialog takes focus, can we add notice about such default behavior in docs?
See original GitHub issueNot sure where to post such info but when using material-ui Dialog and rendering tinymce inside it, material-ui dialog is getting focus by default which makes tinymce dialogs uneditable.
The solution is to add disableEnforceFocus
to the dialog. Would like to mention such info somewhere on documentation but can’t decide where and what sentence would be best to provide such notice. I believe people have the same issue with any other dialog rendered inside material-ui Dialog. It was a headache for some time, would love to have noticed on docs.
I believe having some yellowish notice here https://material-ui.com/demos/dialogs/ would make sense.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:12
- Comments:8 (5 by maintainers)
Top Results From Across the Web
Dialog takes focus, can we add notice about such default ...
The solution is to add disableEnforceFocus to the dialog. Would like to mention such info somewhere on documentation but can't decide where and ......
Read more >Edit documents with a screen reader - Google Docs Editors Help
You can edit documents on your computer using a screen reader. First, make sure that you've turned on Docs screen reader support. If...
Read more >The Dialog element - HTML: HyperText Markup Language
Indicates that the dialog is active and can be interacted with. When the open attribute is not set, the dialog shouldn't be shown...
Read more >How to Make Dialogs (The Java™ Tutorials > Creating a GUI ...
To create simple, standard dialogs, you use the JOptionPane class. The ProgressMonitor class can put up a dialog that shows the progress of...
Read more >Dialog Widget | jQuery UI API Documentation
Upon opening a dialog, focus is automatically moved to the first item that matches the following: The first element within the dialog with...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
How do you think we should handle the issue?
so i assume
disableAutoFocus={true}
would solve this? Can’t try atm