Twitter bootstrap - open modal over an already opened modal

confirmation, modal-dialog, twitter-bootstrap

Solution

All you need to do is place the markup for the confirmation modal lower down in the code than the details modal.

Problem

Here's my scenario: I'm opening a modal window with some record details, and I've a "Delete" button. When user clicks on this button, I need to show a "confirmation" modal above/over the existing modal (asking "are you sure?"), but when this confirmation modal is showed, it doesn't block the "details" first modal (behind). Does anyone know how can I do it? Thanks!

Original source

Related problems