开发者

How To Prevent expanding JQuery BlockUI Dialog

开发者 https://www.devze.com 2022-12-31 15:33 出处:网络
how do i prevent expanding the jquery blockui dialog box? i thought draggable: false? but that does not work.

how do i prevent expanding the jquery blockui dialog box? i thought draggable: false? but that does not work.

// 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();
                            }
                }
            });
        }


I might have misread your question, but is resizable what you're after?

resizable: false,
0

精彩评论

暂无评论...
验证码 换一张
取 消