Wie verhindere ich, dass das Jquery-Blockui-Dialogfeld erweitert wird? Ich dachte, draggable: false? aber das funktioniert nicht.
// 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();
}
}
});
}