I'm trying to create a dialog using Bootstrap 3.2.0. I have them working fine except for those that I want to be modeless. I've set the data-backdrop
attribute to false and I've tried some of the suggestions I've found online such as detaching the focus event:
$(document).off("focusin.bs.modal");
and/or removing the modal-open
class from the body
tag.
After doing these things you can still see the content in the window, but the user cannot interact with it at all in Chrome and Firefox, while they can to some extent in IE 10.
Is it possible to create a truly modeless dialog using Bootstrap?