Skip to content
Advertisement

How to show bootstrap-5 modals position dynamically on its trigger, for each trigger

How to show bootstrap-5 modals position dynamically? I am trying to create a Google calendar clone, suppose.. when we have more events on 28th and if we click on 4 more as shown in the below image then that modal should be open on the Wed 28th to its dedicated box, not in the center or any other place. enter image description hereDEMO

Advertisement

Answer

Modals are not positioned relative to the trigger element, but Popovers (and Tooltips) are. Here’s an example using Popovers…

Add the Popover in the markup for cells with events…

JavaScript

Include the details in a hidden DOM element, or create the element dynamically in JS…

JavaScript

Enable Popovers and set the content option

JavaScript

https://codeply.com/p/AKvIsoHJOl

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