2008-06-04 02:34:33 +00:00
|
|
|
/*
|
2008-09-04 22:03:30 +00:00
|
|
|
* jQuery UI Dialog @VERSION
|
2008-06-04 02:34:33 +00:00
|
|
|
*
|
2009-01-03 21:55:13 +00:00
|
|
|
* Copyright (c) 2009 AUTHORS.txt (http://ui.jquery.com/about)
|
2008-06-04 02:34:33 +00:00
|
|
|
* Dual licensed under the MIT (MIT-LICENSE.txt)
|
|
|
|
* and GPL (GPL-LICENSE.txt) licenses.
|
2008-11-20 04:10:34 +00:00
|
|
|
*
|
2008-06-04 02:34:33 +00:00
|
|
|
* http://docs.jquery.com/UI/Dialog
|
|
|
|
*
|
|
|
|
* Depends:
|
|
|
|
* ui.core.js
|
|
|
|
* ui.draggable.js
|
|
|
|
* ui.resizable.js
|
|
|
|
*/
|
2008-06-05 12:14:12 +00:00
|
|
|
(function($) {
|
2008-06-04 02:34:33 +00:00
|
|
|
|
|
|
|
var setDataSwitch = {
|
|
|
|
dragStart: "start.draggable",
|
|
|
|
drag: "drag.draggable",
|
|
|
|
dragStop: "stop.draggable",
|
|
|
|
maxHeight: "maxHeight.resizable",
|
|
|
|
minHeight: "minHeight.resizable",
|
|
|
|
maxWidth: "maxWidth.resizable",
|
|
|
|
minWidth: "minWidth.resizable",
|
|
|
|
resizeStart: "start.resizable",
|
|
|
|
resize: "drag.resizable",
|
|
|
|
resizeStop: "stop.resizable"
|
|
|
|
};
|
|
|
|
|
|
|
|
$.widget("ui.dialog", {
|
2008-11-21 04:17:19 +00:00
|
|
|
|
2008-08-16 14:13:55 +00:00
|
|
|
_init: function() {
|
2008-09-03 01:49:26 +00:00
|
|
|
this.originalTitle = this.element.attr('title');
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
var self = this,
|
|
|
|
options = this.options,
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2009-01-20 21:57:00 +00:00
|
|
|
title = options.title || this.originalTitle || ' ',
|
2008-12-19 03:05:01 +00:00
|
|
|
titleId = $.ui.dialog.getTitleId(this.element),
|
|
|
|
|
|
|
|
uiDialog = (this.uiDialog = $('<div/>'))
|
2008-12-13 15:12:34 +00:00
|
|
|
.appendTo(document.body)
|
2008-12-19 03:05:01 +00:00
|
|
|
.hide()
|
|
|
|
.addClass(
|
|
|
|
'ui-dialog ' +
|
|
|
|
'ui-widget ' +
|
|
|
|
'ui-widget-content ' +
|
|
|
|
'ui-corner-all ' +
|
|
|
|
options.dialogClass
|
|
|
|
)
|
|
|
|
.css({
|
|
|
|
position: 'absolute',
|
|
|
|
overflow: 'hidden',
|
|
|
|
zIndex: options.zIndex
|
|
|
|
})
|
|
|
|
// setting tabIndex makes the div focusable
|
|
|
|
// setting outline to 0 prevents a border on focus in Mozilla
|
|
|
|
.attr('tabIndex', -1).css('outline', 0).keydown(function(ev) {
|
|
|
|
(options.closeOnEscape && ev.keyCode
|
|
|
|
&& ev.keyCode == $.ui.keyCode.ESCAPE && self.close());
|
|
|
|
})
|
|
|
|
.attr({
|
2009-01-16 02:09:45 +00:00
|
|
|
role: 'dialog',
|
2008-12-19 03:05:01 +00:00
|
|
|
'aria-labelledby': titleId
|
|
|
|
})
|
2008-12-23 04:38:50 +00:00
|
|
|
.mousedown(function() {
|
2008-12-19 03:05:01 +00:00
|
|
|
self.moveToTop();
|
|
|
|
}),
|
|
|
|
|
|
|
|
uiDialogContent = this.element
|
2009-01-14 00:27:25 +00:00
|
|
|
.show()
|
2008-09-03 01:49:26 +00:00
|
|
|
.removeAttr('title')
|
2008-12-11 02:45:42 +00:00
|
|
|
.addClass(
|
|
|
|
'ui-dialog-content ' +
|
|
|
|
'ui-widget-content')
|
2008-12-19 03:05:01 +00:00
|
|
|
.appendTo(uiDialog),
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-12-13 11:51:33 +00:00
|
|
|
uiDialogTitlebar = (this.uiDialogTitlebar = $('<div></div>'))
|
2008-12-11 02:45:42 +00:00
|
|
|
.addClass(
|
|
|
|
'ui-dialog-titlebar ' +
|
|
|
|
'ui-widget-header ' +
|
|
|
|
'ui-corner-all ' +
|
|
|
|
'ui-helper-clearfix'
|
|
|
|
)
|
2008-12-19 03:05:01 +00:00
|
|
|
.prependTo(uiDialog),
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-12-06 14:58:52 +00:00
|
|
|
uiDialogTitlebarClose = $('<a href="#"/>')
|
2008-12-11 02:45:42 +00:00
|
|
|
.addClass(
|
|
|
|
'ui-dialog-titlebar-close ' +
|
|
|
|
'ui-corner-all'
|
|
|
|
)
|
2008-12-06 14:58:52 +00:00
|
|
|
.attr('role', 'button')
|
2008-12-11 02:48:20 +00:00
|
|
|
.hover(
|
|
|
|
function() {
|
2008-12-21 18:00:42 +00:00
|
|
|
uiDialogTitlebarClose.addClass('ui-state-hover');
|
2008-12-11 02:48:20 +00:00
|
|
|
},
|
|
|
|
function() {
|
2008-12-21 18:00:42 +00:00
|
|
|
uiDialogTitlebarClose.removeClass('ui-state-hover');
|
2008-12-11 02:48:20 +00:00
|
|
|
}
|
|
|
|
)
|
2008-12-21 18:00:42 +00:00
|
|
|
.focus(function() {
|
|
|
|
uiDialogTitlebarClose.addClass('ui-state-focus');
|
|
|
|
})
|
|
|
|
.blur(function() {
|
|
|
|
uiDialogTitlebarClose.removeClass('ui-state-focus');
|
|
|
|
})
|
2008-12-11 02:48:20 +00:00
|
|
|
.mousedown(function(ev) {
|
|
|
|
ev.stopPropagation();
|
|
|
|
})
|
|
|
|
.click(function() {
|
|
|
|
self.close();
|
|
|
|
return false;
|
|
|
|
})
|
2008-12-06 14:58:52 +00:00
|
|
|
.appendTo(uiDialogTitlebar),
|
|
|
|
|
|
|
|
uiDialogTitlebarCloseText = (this.uiDialogTitlebarCloseText = $('<span/>'))
|
2008-12-11 02:45:42 +00:00
|
|
|
.addClass(
|
|
|
|
'ui-icon ' +
|
|
|
|
'ui-icon-closethick'
|
|
|
|
)
|
2008-12-11 02:25:51 +00:00
|
|
|
.text(options.closeText)
|
2008-12-06 14:58:52 +00:00
|
|
|
.appendTo(uiDialogTitlebarClose),
|
|
|
|
|
2008-09-19 18:28:31 +00:00
|
|
|
uiDialogTitle = $('<span/>')
|
|
|
|
.addClass('ui-dialog-title')
|
|
|
|
.attr('id', titleId)
|
|
|
|
.html(title)
|
2009-01-17 21:31:43 +00:00
|
|
|
.prependTo(uiDialogTitlebar);
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-11-03 14:23:13 +00:00
|
|
|
uiDialogTitlebar.find("*").add(uiDialogTitlebar).disableSelection();
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:48:16 +00:00
|
|
|
(options.draggable && $.fn.draggable && this._makeDraggable());
|
2008-09-14 14:47:06 +00:00
|
|
|
(options.resizable && $.fn.resizable && this._makeResizable());
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-08-16 14:13:55 +00:00
|
|
|
this._createButtons(options.buttons);
|
2008-08-12 17:06:25 +00:00
|
|
|
this._isOpen = false;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
(options.bgiframe && $.fn.bgiframe && uiDialog.bgiframe());
|
|
|
|
(options.autoOpen && this.open());
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
destroy: function() {
|
|
|
|
(this.overlay && this.overlay.destroy());
|
|
|
|
this.uiDialog.hide();
|
|
|
|
this.element
|
2009-01-16 02:09:45 +00:00
|
|
|
.unbind('.dialog')
|
|
|
|
.removeData('dialog')
|
2008-12-11 03:05:02 +00:00
|
|
|
.removeClass('ui-dialog-content ui-widget-content')
|
2008-09-14 14:49:28 +00:00
|
|
|
.hide().appendTo('body');
|
|
|
|
this.uiDialog.remove();
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
(this.originalTitle && this.element.attr('title', this.originalTitle));
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
close: function() {
|
2009-01-03 05:55:13 +00:00
|
|
|
if (false === this._trigger('beforeclose')) {
|
2008-09-19 02:07:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
(this.overlay && this.overlay.destroy());
|
|
|
|
this.uiDialog
|
|
|
|
.hide(this.options.hide)
|
|
|
|
.unbind('keypress.ui-dialog');
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2009-01-03 05:55:13 +00:00
|
|
|
this._trigger('close');
|
2008-09-14 14:49:28 +00:00
|
|
|
$.ui.dialog.overlay.resize();
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
this._isOpen = false;
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
isOpen: function() {
|
|
|
|
return this._isOpen;
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-29 13:08:14 +00:00
|
|
|
// the force parameter allows us to move modal dialogs to their correct
|
|
|
|
// position on open
|
|
|
|
moveToTop: function(force) {
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-29 13:08:14 +00:00
|
|
|
if ((this.options.modal && !force)
|
|
|
|
|| (!this.options.stack && !this.options.modal)) {
|
2009-01-03 05:55:13 +00:00
|
|
|
return this._trigger('focus');
|
2008-09-29 13:08:14 +00:00
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-29 13:08:14 +00:00
|
|
|
var maxZ = this.options.zIndex, options = this.options;
|
|
|
|
$('.ui-dialog:visible').each(function() {
|
|
|
|
maxZ = Math.max(maxZ, parseInt($(this).css('z-index'), 10) || options.zIndex);
|
|
|
|
});
|
|
|
|
(this.overlay && this.overlay.$el.css('z-index', ++maxZ));
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-11-01 14:49:38 +00:00
|
|
|
//Save and then restore scroll since Opera 9.5+ resets when parent z-Index is changed.
|
|
|
|
// http://ui.jquery.com/bugs/ticket/3193
|
|
|
|
var saveScroll = { scrollTop: this.element.attr('scrollTop'), scrollLeft: this.element.attr('scrollLeft') };
|
|
|
|
this.uiDialog.css('z-index', ++maxZ);
|
|
|
|
this.element.attr(saveScroll);
|
2009-01-03 05:55:13 +00:00
|
|
|
this._trigger('focus');
|
2008-09-29 13:08:14 +00:00
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
open: function() {
|
|
|
|
if (this._isOpen) { return; }
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2009-01-17 21:00:59 +00:00
|
|
|
var options = this.options,
|
|
|
|
uiDialog = this.uiDialog;
|
|
|
|
|
|
|
|
this.overlay = options.modal ? new $.ui.dialog.overlay(this) : null;
|
|
|
|
(uiDialog.next().length && uiDialog.appendTo('body'));
|
2008-12-19 03:05:01 +00:00
|
|
|
this._size();
|
2009-01-17 21:00:59 +00:00
|
|
|
this._position(options.position);
|
|
|
|
uiDialog.show(options.show);
|
2008-09-29 13:08:14 +00:00
|
|
|
this.moveToTop(true);
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
// prevent tabbing out of modal dialogs
|
2009-01-17 21:00:59 +00:00
|
|
|
(options.modal && uiDialog.bind('keypress.ui-dialog', function(event) {
|
2008-12-14 06:11:37 +00:00
|
|
|
if (event.keyCode != $.ui.keyCode.TAB) {
|
2008-09-14 14:49:28 +00:00
|
|
|
return;
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
var tabbables = $(':tabbable', this),
|
|
|
|
first = tabbables.filter(':first')[0],
|
|
|
|
last = tabbables.filter(':last')[0];
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-11-14 03:00:16 +00:00
|
|
|
if (event.target == last && !event.shiftKey) {
|
2008-09-14 14:49:28 +00:00
|
|
|
setTimeout(function() {
|
|
|
|
first.focus();
|
|
|
|
}, 1);
|
2008-11-14 03:00:16 +00:00
|
|
|
} else if (event.target == first && event.shiftKey) {
|
2008-09-14 14:49:28 +00:00
|
|
|
setTimeout(function() {
|
|
|
|
last.focus();
|
|
|
|
}, 1);
|
|
|
|
}
|
|
|
|
}));
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2009-01-17 21:00:59 +00:00
|
|
|
// set focus to the first tabbable element in:
|
|
|
|
// - content area
|
|
|
|
// - button pane
|
|
|
|
// - title bar
|
|
|
|
$([])
|
|
|
|
.add(uiDialog.find('.ui-dialog-content :tabbable:first'))
|
|
|
|
.add(uiDialog.find('.ui-dialog-buttonpane :tabbable:first'))
|
|
|
|
.add(uiDialog.find('.ui-dialog-titlebar :tabbable:first'))
|
|
|
|
.filter(':first')
|
|
|
|
.focus();
|
|
|
|
|
2009-01-03 05:55:13 +00:00
|
|
|
this._trigger('open');
|
2008-09-14 14:49:28 +00:00
|
|
|
this._isOpen = true;
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
_createButtons: function(buttons) {
|
|
|
|
var self = this,
|
|
|
|
hasButtons = false,
|
2009-01-17 21:31:43 +00:00
|
|
|
uiDialogButtonPane = $('<div></div>')
|
|
|
|
.addClass(
|
|
|
|
'ui-dialog-buttonpane ' +
|
|
|
|
'ui-widget-content ' +
|
|
|
|
'ui-helper-clearfix'
|
|
|
|
);
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2009-01-17 21:31:43 +00:00
|
|
|
// if we already have a button pane, remove it
|
|
|
|
this.uiDialog.find('.ui-dialog-buttonpane').remove();
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2009-01-17 21:31:43 +00:00
|
|
|
(typeof buttons == 'object' && buttons !== null &&
|
|
|
|
$.each(buttons, function() { return !(hasButtons = true); }));
|
2008-09-14 14:49:28 +00:00
|
|
|
if (hasButtons) {
|
|
|
|
$.each(buttons, function(name, fn) {
|
|
|
|
$('<button type="button"></button>')
|
2008-12-11 02:45:42 +00:00
|
|
|
.addClass(
|
|
|
|
'ui-state-default ' +
|
|
|
|
'ui-corner-all'
|
|
|
|
)
|
2008-09-14 14:49:28 +00:00
|
|
|
.text(name)
|
|
|
|
.click(function() { fn.apply(self.element[0], arguments); })
|
2008-12-21 18:00:42 +00:00
|
|
|
.hover(
|
|
|
|
function() {
|
|
|
|
$(this).addClass('ui-state-hover');
|
|
|
|
},
|
|
|
|
function() {
|
|
|
|
$(this).removeClass('ui-state-hover');
|
|
|
|
}
|
|
|
|
)
|
|
|
|
.focus(function() {
|
|
|
|
$(this).addClass('ui-state-focus');
|
|
|
|
})
|
|
|
|
.blur(function() {
|
|
|
|
$(this).removeClass('ui-state-focus');
|
|
|
|
})
|
2008-09-14 14:49:28 +00:00
|
|
|
.appendTo(uiDialogButtonPane);
|
|
|
|
});
|
2009-01-17 21:31:43 +00:00
|
|
|
uiDialogButtonPane.appendTo(this.uiDialog);
|
2008-09-14 14:49:28 +00:00
|
|
|
}
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
_makeDraggable: function() {
|
|
|
|
var self = this,
|
|
|
|
options = this.options;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
this.uiDialog.draggable({
|
|
|
|
cancel: '.ui-dialog-content',
|
|
|
|
helper: options.dragHelper,
|
|
|
|
handle: '.ui-dialog-titlebar',
|
2009-01-03 05:25:48 +00:00
|
|
|
containment: 'document',
|
2008-09-14 14:49:28 +00:00
|
|
|
start: function() {
|
|
|
|
(options.dragStart && options.dragStart.apply(self.element[0], arguments));
|
|
|
|
},
|
|
|
|
drag: function() {
|
|
|
|
(options.drag && options.drag.apply(self.element[0], arguments));
|
|
|
|
},
|
|
|
|
stop: function() {
|
|
|
|
(options.dragStop && options.dragStop.apply(self.element[0], arguments));
|
|
|
|
$.ui.dialog.overlay.resize();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:47:06 +00:00
|
|
|
_makeResizable: function(handles) {
|
|
|
|
handles = (handles === undefined ? this.options.resizable : handles);
|
|
|
|
var self = this,
|
|
|
|
options = this.options,
|
|
|
|
resizeHandles = typeof handles == 'string'
|
|
|
|
? handles
|
|
|
|
: 'n,e,s,w,se,sw,ne,nw';
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:47:06 +00:00
|
|
|
this.uiDialog.resizable({
|
|
|
|
cancel: '.ui-dialog-content',
|
2008-12-23 14:55:41 +00:00
|
|
|
alsoResize: this.element,
|
2008-09-14 14:47:06 +00:00
|
|
|
helper: options.resizeHelper,
|
|
|
|
maxWidth: options.maxWidth,
|
|
|
|
maxHeight: options.maxHeight,
|
|
|
|
minWidth: options.minWidth,
|
|
|
|
minHeight: options.minHeight,
|
|
|
|
start: function() {
|
|
|
|
(options.resizeStart && options.resizeStart.apply(self.element[0], arguments));
|
|
|
|
},
|
|
|
|
resize: function() {
|
|
|
|
(options.resize && options.resize.apply(self.element[0], arguments));
|
|
|
|
},
|
|
|
|
handles: resizeHandles,
|
|
|
|
stop: function() {
|
|
|
|
(options.resizeStop && options.resizeStop.apply(self.element[0], arguments));
|
|
|
|
$.ui.dialog.overlay.resize();
|
|
|
|
}
|
2008-12-19 02:12:10 +00:00
|
|
|
})
|
|
|
|
.find('.ui-resizable-se').addClass('ui-icon ui-icon-grip-diagonal-se');
|
2008-09-14 14:47:06 +00:00
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-08-16 14:13:55 +00:00
|
|
|
_position: function(pos) {
|
2008-06-04 02:34:33 +00:00
|
|
|
var wnd = $(window), doc = $(document),
|
|
|
|
pTop = doc.scrollTop(), pLeft = doc.scrollLeft(),
|
|
|
|
minTop = pTop;
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
if ($.inArray(pos, ['center','top','right','bottom','left']) >= 0) {
|
|
|
|
pos = [
|
|
|
|
pos == 'right' || pos == 'left' ? pos : 'center',
|
|
|
|
pos == 'top' || pos == 'bottom' ? pos : 'middle'
|
|
|
|
];
|
|
|
|
}
|
|
|
|
if (pos.constructor != Array) {
|
|
|
|
pos = ['center', 'middle'];
|
|
|
|
}
|
|
|
|
if (pos[0].constructor == Number) {
|
|
|
|
pLeft += pos[0];
|
|
|
|
} else {
|
|
|
|
switch (pos[0]) {
|
|
|
|
case 'left':
|
|
|
|
pLeft += 0;
|
|
|
|
break;
|
|
|
|
case 'right':
|
2008-12-19 20:34:54 +00:00
|
|
|
pLeft += wnd.width() - this.uiDialog.outerWidth();
|
2008-06-04 02:34:33 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case 'center':
|
2008-12-19 20:34:54 +00:00
|
|
|
pLeft += (wnd.width() - this.uiDialog.outerWidth()) / 2;
|
2008-06-04 02:34:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (pos[1].constructor == Number) {
|
|
|
|
pTop += pos[1];
|
|
|
|
} else {
|
|
|
|
switch (pos[1]) {
|
|
|
|
case 'top':
|
|
|
|
pTop += 0;
|
|
|
|
break;
|
|
|
|
case 'bottom':
|
2009-01-14 00:32:12 +00:00
|
|
|
pTop += wnd.height() - this.uiDialog.outerHeight();
|
2008-06-04 02:34:33 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case 'middle':
|
2009-01-14 00:32:12 +00:00
|
|
|
pTop += (wnd.height() - this.uiDialog.outerHeight()) / 2;
|
2008-06-04 02:34:33 +00:00
|
|
|
}
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
// prevent the dialog from being too high (make sure the titlebar
|
|
|
|
// is accessible)
|
|
|
|
pTop = Math.max(pTop, minTop);
|
|
|
|
this.uiDialog.css({top: pTop, left: pLeft});
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
_setData: function(key, value){
|
|
|
|
(setDataSwitch[key] && this.uiDialog.data(setDataSwitch[key], value));
|
|
|
|
switch (key) {
|
|
|
|
case "buttons":
|
|
|
|
this._createButtons(value);
|
|
|
|
break;
|
2008-12-11 02:25:51 +00:00
|
|
|
case "closeText":
|
|
|
|
this.uiDialogTitlebarCloseText.text(value);
|
|
|
|
break;
|
2008-09-14 14:49:28 +00:00
|
|
|
case "draggable":
|
|
|
|
(value
|
|
|
|
? this._makeDraggable()
|
|
|
|
: this.uiDialog.draggable('destroy'));
|
|
|
|
break;
|
|
|
|
case "height":
|
|
|
|
this.uiDialog.height(value);
|
|
|
|
break;
|
|
|
|
case "position":
|
|
|
|
this._position(value);
|
|
|
|
break;
|
|
|
|
case "resizable":
|
|
|
|
var uiDialog = this.uiDialog,
|
|
|
|
isResizable = this.uiDialog.is(':data(resizable)');
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
// currently resizable, becoming non-resizable
|
|
|
|
(isResizable && !value && uiDialog.resizable('destroy'));
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
// currently resizable, changing handles
|
|
|
|
(isResizable && typeof value == 'string' &&
|
|
|
|
uiDialog.resizable('option', 'handles', value));
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
// currently non-resizable, becoming resizable
|
|
|
|
(isResizable || this._makeResizable(value));
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
break;
|
|
|
|
case "title":
|
|
|
|
$(".ui-dialog-title", this.uiDialogTitlebar).html(value || ' ');
|
|
|
|
break;
|
|
|
|
case "width":
|
|
|
|
this.uiDialog.width(value);
|
|
|
|
break;
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-14 14:49:28 +00:00
|
|
|
$.widget.prototype._setData.apply(this, arguments);
|
|
|
|
},
|
2008-12-21 16:54:27 +00:00
|
|
|
|
2008-08-16 14:13:55 +00:00
|
|
|
_size: function() {
|
2008-12-19 03:05:01 +00:00
|
|
|
/* If the user has resized the dialog, the .ui-dialog and .ui-dialog-content
|
2008-12-21 16:54:27 +00:00
|
|
|
* divs will both have width and height set, so we need to reset them
|
2008-12-19 03:05:01 +00:00
|
|
|
*/
|
2008-12-21 16:54:27 +00:00
|
|
|
var options = this.options;
|
2008-12-19 03:05:01 +00:00
|
|
|
|
|
|
|
// reset content sizing
|
|
|
|
this.element.css({
|
|
|
|
height: 0,
|
2009-01-03 14:43:50 +00:00
|
|
|
minHeight: 0,
|
2008-12-19 03:05:01 +00:00
|
|
|
width: 'auto'
|
|
|
|
});
|
2008-12-21 16:54:27 +00:00
|
|
|
|
|
|
|
// reset wrapper sizing
|
|
|
|
// determine the height of all the non-content elements
|
2008-12-19 03:05:01 +00:00
|
|
|
var nonContentHeight = this.uiDialog.css({
|
|
|
|
height: 'auto',
|
2008-12-21 16:54:27 +00:00
|
|
|
width: options.width
|
2008-12-19 03:05:01 +00:00
|
|
|
})
|
|
|
|
.height();
|
2008-12-21 16:54:27 +00:00
|
|
|
|
2008-12-31 01:12:43 +00:00
|
|
|
this.element
|
|
|
|
.css({
|
|
|
|
minHeight: options.minHeight - nonContentHeight,
|
|
|
|
height: options.height == 'auto'
|
|
|
|
? 'auto'
|
|
|
|
: options.height - nonContentHeight
|
|
|
|
});
|
2008-06-04 02:34:33 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.extend($.ui.dialog, {
|
2008-10-05 16:29:21 +00:00
|
|
|
version: "@VERSION",
|
2008-06-04 02:34:33 +00:00
|
|
|
defaults: {
|
|
|
|
autoOpen: true,
|
|
|
|
bgiframe: false,
|
|
|
|
buttons: {},
|
|
|
|
closeOnEscape: true,
|
2008-12-11 02:25:51 +00:00
|
|
|
closeText: 'close',
|
2008-06-04 02:34:33 +00:00
|
|
|
draggable: true,
|
2008-12-31 01:12:43 +00:00
|
|
|
height: 'auto',
|
|
|
|
minHeight: 150,
|
2008-06-04 02:34:33 +00:00
|
|
|
minWidth: 150,
|
|
|
|
modal: false,
|
|
|
|
overlay: {},
|
|
|
|
position: 'center',
|
|
|
|
resizable: true,
|
|
|
|
stack: true,
|
2009-01-20 21:57:00 +00:00
|
|
|
title: '',
|
2008-06-04 02:34:33 +00:00
|
|
|
width: 300,
|
|
|
|
zIndex: 1000
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-08-12 17:06:25 +00:00
|
|
|
getter: 'isOpen',
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-09-19 18:28:31 +00:00
|
|
|
uuid: 0,
|
2008-11-21 04:17:19 +00:00
|
|
|
|
2008-09-19 18:28:31 +00:00
|
|
|
getTitleId: function($el) {
|
|
|
|
return 'ui-dialog-title-' + ($el.attr('id') || ++this.uuid);
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
overlay: function(dialog) {
|
|
|
|
this.$el = $.ui.dialog.overlay.create(dialog);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.extend($.ui.dialog.overlay, {
|
|
|
|
instances: [],
|
|
|
|
events: $.map('focus,mousedown,mouseup,keydown,keypress,click'.split(','),
|
2008-11-14 03:00:16 +00:00
|
|
|
function(event) { return event + '.dialog-overlay'; }).join(' '),
|
2008-06-04 02:34:33 +00:00
|
|
|
create: function(dialog) {
|
|
|
|
if (this.instances.length === 0) {
|
|
|
|
// prevent use of anchors and inputs
|
|
|
|
// we use a setTimeout in case the overlay is created from an
|
|
|
|
// event that we're going to be cancelling (see #2804)
|
|
|
|
setTimeout(function() {
|
|
|
|
$('a, :input').bind($.ui.dialog.overlay.events, function() {
|
|
|
|
// allow use of the element if inside a dialog and
|
|
|
|
// - there are no modal dialogs
|
|
|
|
// - there are modal dialogs, but we are in front of the topmost modal
|
|
|
|
var allow = false;
|
|
|
|
var $dialog = $(this).parents('.ui-dialog');
|
|
|
|
if ($dialog.length) {
|
|
|
|
var $overlays = $('.ui-dialog-overlay');
|
|
|
|
if ($overlays.length) {
|
|
|
|
var maxZ = parseInt($overlays.css('z-index'), 10);
|
|
|
|
$overlays.each(function() {
|
|
|
|
maxZ = Math.max(maxZ, parseInt($(this).css('z-index'), 10));
|
|
|
|
});
|
|
|
|
allow = parseInt($dialog.css('z-index'), 10) > maxZ;
|
|
|
|
} else {
|
|
|
|
allow = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return allow;
|
|
|
|
});
|
|
|
|
}, 1);
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
// allow closing by pressing the escape key
|
2008-11-14 03:00:16 +00:00
|
|
|
$(document).bind('keydown.dialog-overlay', function(event) {
|
|
|
|
(dialog.options.closeOnEscape && event.keyCode
|
2008-12-14 06:11:37 +00:00
|
|
|
&& event.keyCode == $.ui.keyCode.ESCAPE && dialog.close());
|
2008-06-04 02:34:33 +00:00
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
// handle window resize
|
|
|
|
$(window).bind('resize.dialog-overlay', $.ui.dialog.overlay.resize);
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-12-13 11:51:33 +00:00
|
|
|
var $el = $('<div></div>').appendTo(document.body)
|
2008-06-04 02:34:33 +00:00
|
|
|
.addClass('ui-dialog-overlay').css($.extend({
|
|
|
|
borderWidth: 0, margin: 0, padding: 0,
|
|
|
|
position: 'absolute', top: 0, left: 0,
|
|
|
|
width: this.width(),
|
|
|
|
height: this.height()
|
|
|
|
}, dialog.options.overlay));
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
(dialog.options.bgiframe && $.fn.bgiframe && $el.bgiframe());
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
this.instances.push($el);
|
|
|
|
return $el;
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
destroy: function($el) {
|
|
|
|
this.instances.splice($.inArray(this.instances, $el), 1);
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
if (this.instances.length === 0) {
|
|
|
|
$('a, :input').add([document, window]).unbind('.dialog-overlay');
|
|
|
|
}
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
$el.remove();
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
height: function() {
|
2008-07-14 00:50:01 +00:00
|
|
|
// handle IE 6
|
2008-06-04 02:34:33 +00:00
|
|
|
if ($.browser.msie && $.browser.version < 7) {
|
|
|
|
var scrollHeight = Math.max(
|
|
|
|
document.documentElement.scrollHeight,
|
|
|
|
document.body.scrollHeight
|
|
|
|
);
|
|
|
|
var offsetHeight = Math.max(
|
|
|
|
document.documentElement.offsetHeight,
|
|
|
|
document.body.offsetHeight
|
|
|
|
);
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
if (scrollHeight < offsetHeight) {
|
|
|
|
return $(window).height() + 'px';
|
|
|
|
} else {
|
|
|
|
return scrollHeight + 'px';
|
|
|
|
}
|
2008-07-14 00:50:01 +00:00
|
|
|
// handle "good" browsers
|
2008-06-04 02:34:33 +00:00
|
|
|
} else {
|
|
|
|
return $(document).height() + 'px';
|
|
|
|
}
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
width: function() {
|
2008-07-14 00:50:01 +00:00
|
|
|
// handle IE 6
|
2008-06-04 02:34:33 +00:00
|
|
|
if ($.browser.msie && $.browser.version < 7) {
|
|
|
|
var scrollWidth = Math.max(
|
|
|
|
document.documentElement.scrollWidth,
|
|
|
|
document.body.scrollWidth
|
|
|
|
);
|
|
|
|
var offsetWidth = Math.max(
|
|
|
|
document.documentElement.offsetWidth,
|
|
|
|
document.body.offsetWidth
|
|
|
|
);
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
if (scrollWidth < offsetWidth) {
|
|
|
|
return $(window).width() + 'px';
|
|
|
|
} else {
|
|
|
|
return scrollWidth + 'px';
|
|
|
|
}
|
2008-07-14 00:50:01 +00:00
|
|
|
// handle "good" browsers
|
2008-06-04 02:34:33 +00:00
|
|
|
} else {
|
|
|
|
return $(document).width() + 'px';
|
|
|
|
}
|
|
|
|
},
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
resize: function() {
|
|
|
|
/* If the dialog is draggable and the user drags it past the
|
|
|
|
* right edge of the window, the document becomes wider so we
|
|
|
|
* need to stretch the overlay. If the user then drags the
|
|
|
|
* dialog back to the left, the document will become narrower,
|
|
|
|
* so we need to shrink the overlay to the appropriate size.
|
|
|
|
* This is handled by shrinking the overlay before setting it
|
|
|
|
* to the full document size.
|
|
|
|
*/
|
|
|
|
var $overlays = $([]);
|
|
|
|
$.each($.ui.dialog.overlay.instances, function() {
|
|
|
|
$overlays = $overlays.add(this);
|
|
|
|
});
|
2008-11-18 02:55:25 +00:00
|
|
|
|
2008-06-04 02:34:33 +00:00
|
|
|
$overlays.css({
|
|
|
|
width: 0,
|
|
|
|
height: 0
|
|
|
|
}).css({
|
|
|
|
width: $.ui.dialog.overlay.width(),
|
|
|
|
height: $.ui.dialog.overlay.height()
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$.extend($.ui.dialog.overlay.prototype, {
|
|
|
|
destroy: function() {
|
|
|
|
$.ui.dialog.overlay.destroy(this.$el);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
})(jQuery);
|