tags:

views:

38

answers:

1

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

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

resizable: false,
nickf
there you go... i know that there is property but didn't remember which one. - thanks :)
Abu Hamzah