在乐学一百的项目当中引用到了BootstrapDialog,其中后台发送短信时,为了防止管理员编辑了半天的短息,突然间因为点击某个空白区域导致丢失,所以在此禁用掉点击空白关闭弹出框。
主要属性为: closable: false,
BootstrapDialog.show({
2 title: '一键群发',
3 message: html,
type: BootstrapDialog.TYPE_DEFAULT,
closable: false,
cssClass: 'dialog_mar',
buttons: [{
label: '发 送',
cssClass:'con_btn',
action: function(dialogRef){
dialogRef.close();
}
}, {
label: '取消',
action: function(dialogRef){
dialogRef.close();
}
}]
})