$.modalDialogTwo = function(options) {
if ($.modalDialogTwo.handler == undefined) {// 避免重複彈出
var opts = $.extend({
title : '',
width : 840,
height : 680,
modal : true,
onClose : function() {
$.modalDialogTwo.handler = undefined;
$(this).dialog('destroy');
},
onOpen : function() {
// parent.$.messager.progress({
// title : '提示',
// text : '資料載入中,請稍後....'
// });
}
}, options);
opts.modal = true;// 強制此dialog為模式化,無視傳遞過來的modal參數
return $.modalDialogTwo.handler = $('
').dialog(opts);
}
};