In bootstrap css, it is possible to display a modal dialog, but I want to be able to make it modal so the UI behind doesn\'t respond, without having the dark black background sh
Just use the css style as
.modal-backdrop {background: none;} .modal{background: none;}
And all your modal background will go away for every modal you want to display in your app.