如何防止扩展JQuery BlockUI对话框

时间:2010-05-18 02:59:58

标签: jquery

如何防止扩展jquery blockui对话框?我以为可以拖延:假?但这不起作用。

// this is essentially the default dialog if not overriden
    initDialog: function(e) {
        // modify timeout to do jquery dialog
        if (typeof jQuery.ui != 'undefined') {
            var _session = this;
            $("#" + this._clientId).dialog({
                autoOpen: false,
                bgiframe: true, draggable: false,
                modal: true,
                buttons: {
                    Ok: function() {
                        $(this).dialog('close');
                        CallServer();
                            }
                }
            });
        }

1 个答案:

答案 0 :(得分:1)

我可能误解了您的问题,但resizable您的问题是什么?

resizable: false,
相关问题