How do you show a progress bar inside a modal window using twitter bootstrap? The screen greys out but the modal dialog is not showing.
JSFiddle
http://jsfiddle.net/jkittell/L0ccmgf2/4/
HTML
<body>
<h1>Hello World!</h1>
<div class="modal hide" id="pleaseWaitDialog" data-backdrop="static" data-keyboard="false">
<div class="modal-header">
<h1>Processing...</h1>
</div>
<div class="modal-body">
<div class="progress progress-striped active">
<div class="bar" style="width: 100%;"></div>
</div>
</div>
</div>
</body>
JavaScript
$(function () {
var pleaseWait = $('#pleaseWaitDialog');
showPleaseWait = function () {
pleaseWait.modal('show');
};
hidePleaseWait = function () {
pleaseWait.modal('hide');
};
showPleaseWait();
});
Use this markup instead:
<!-- Modal -->
<div class="modal fade" id="pleaseWaitDialog" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h1>Processing...</h1>
</div>
<div class="modal-body">
<div class="progress">
<div class="progress-bar progress-bar-success progress-bar-striped" role="progressbar" aria-valuenow="40" aria-valuemin="0" aria-valuemax="100" style="width: 40%">
<span class="sr-only">40% Complete (success)</span>
</div>
</div>
</div>
</div>
</div>
</div>
See this updated fiddle
Using my extension on bootstrap-waitingfor library , this extension includes:
For more documentation , check this link
waitingDialog.show('In progress ...');
waitingDialog.progress(0);
//----i.e: after 2 sec
waitingDialog.progress(10); // means 10 %
// i.e: after 2sec again
waitingDialog.progress(60); // means 60%
waitingDialog.show('Please wait',{rtl:false})
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With