-
Hello, I've built a HTML Dialog element ( I was wondering if there was a way built in, or some CSS I could use to make sure it appears in front of the Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi, I don't think this is possible because the dialog element, like the alert, is meant to appear above any page content. Maybe try to do the opposite - when Fancybox opens, hide the dialog window and when closing - reveal it. |
Beta Was this translation helpful? Give feedback.
-
I also needed the lightbox on top of an existing dialog element. This is somewhat hacky and might not work in every case but in my specific case it seems to work fine. Fancybox.bind("[data-fancybox]", {
on: {
reveal: (fancybox) => {
// Get fancybox container and create dialog from it
let fancyboxContainer = document.querySelector(".fancybox__container");
let dialog = document.createElement("dialog");
dialog.appendChild(fancyboxContainer);
document.body.appendChild(dialog);
dialog.showModal();
},
close: (fancybox) => {
// Close and remove dialog on close
let dialog = fancybox.container.parentElement;
if (dialog) {
dialog.close();
dialog.remove();
}
},
},
}); Note that I also had to do some additional event handling for the escape key so only the top most dialog get closed. |
Beta Was this translation helpful? Give feedback.
Hi,
I don't think this is possible because the dialog element, like the alert, is meant to appear above any page content.
Maybe try to do the opposite - when Fancybox opens, hide the dialog window and when closing - reveal it.