So, I\'m using this code to open another modal window in a current opened modal window:
Close the first Bootstrap modal and open the new modal dynamically.
$('#Modal_One').modal('hide'); setTimeout(function () { $('#Modal_New').modal({ backdrop: 'dynamic', keyboard: true }); }, 500);