Skip to content
Advertisement

Bootstrap: allow opening a modal without activating collapse on parent

Simple situation here: I have a Bootstrap 4 table with rows that I want to be clickable to expand additional, hidden rows. So the entire tr has data-toggle=”collapse”. However, inside that TR are some buttons that I want to open modals without activating the collapse. I can’t seem the get that working, I’ve tried:

JavaScript

But this just prevents modals from showing up. I have also tried to capture clicks on the buttons, check the targets and only call .modal(‘show’) if the targets are buttons, stopping propagation otherwise, but this causes the modals to show and then close immediately.

Advertisement

Answer

Don’t rely on the attributes data-bs-something but rather write your own logic for opening the modal. Then cancel the event on click using ev.stopPropagation()

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement