私はメトロ UI を使用しており、ダイアログ ボックスを表示したいと考えています。
これは私のコードです:
$("#createFlatWindow").on('click', function(){
$.Dialog({
overlay: true,
overlayClickClose:true,
shadow: true,
flat: false,
content: '',
title: 'Please wait..',
width: 300,
height: 170,
sysButtons: {
btnMin: false,
btnMax: false,
btnClose: false
},
onShow: function(_dialog){
var content = _dialog.children('.content');
content.html('<div style="width:500px;"><div style="float:left;padding-top:10px;padding-left:10px;padding-right:25px;"><img src="/uiframework/autobatch/images/autobatch_ajax_loader_1.GIF"></div><div style="float:left;padding-top:40px;width:350px;"><b>Please wait for a while we are in process of creating batch</b></div></div>');
}
});
});
<input type ="button" id="createFlatWindow"/>
ボタンをクリックすると、ダイアログボックスがポップアップします。親ページを非表示にします。ただし、問題は、ダイアログ ボックスの外側をマウスでクリックすると、ダイアログ ボックスが閉じてしまうことです。
ダイアログボックスをモーダルにしないようにする方法はありますか?