Cannot do anything with nested modal
See original GitHub issueDescription
When opening a modal inside another modal. I can’t not do anything except closing modal by clicking on .modal-overlay
Screenshots
Open parent modal
Inside parent modal, I open other modal, so I cann’t do anything…
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:5 (2 by maintainers)
Top Results From Across the Web
What are the accessibility issues with nested modal dialogs
There is no accessibility with nested modal dialogs per se. The problem is more often caused by the fact that the UI frameworks,...
Read more >Modal · Bootstrap v5.0
Bootstrap only supports one modal window at a time. Nested modals aren't supported as we believe them to be poor user experiences. Modals...
Read more >Bootstrap Modal - examples & tutorial
Bootstrap only supports one modal window at a time. Nested modals aren't supported as we believe them to be poor user experiences. Modals...
Read more >opening a modal from a modal closes the original [#2741877]
Title: Use of CKEditor in a modal, » Nested modals don't work: when using CKEditor ... Can't we use dialog instead of modal...
Read more >Support for multiple (nested) modal windows
In the web we don't have the luxury of having parents for windows and popups, so we can't have a modal window block...
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
Take a look at the code for this http://materializecss.com/test/html/multiple_modals.html
having all the modals in the same level of hierarchy is not an ideal solution. I need to open a modal that can open another modal, and this modal can open a modal and so on infinitely… putting all of this modals in a single level of hierarchy, will require all of my module to
know
about this modal structure. and I will lose the ability to have disconnected modules.