2012-04-19 17:03:21 +00:00
|
|
|
TestHelpers.commonWidgetTests( "dialog", {
|
2011-04-25 18:04:30 +00:00
|
|
|
defaults: {
|
2012-12-07 19:54:21 +00:00
|
|
|
appendTo: "body",
|
2011-04-25 18:04:30 +00:00
|
|
|
autoOpen: true,
|
2012-12-11 21:23:18 +00:00
|
|
|
buttons: [],
|
2011-04-25 18:04:30 +00:00
|
|
|
closeOnEscape: true,
|
2013-08-15 20:56:49 +00:00
|
|
|
closeText: "Close",
|
2011-04-25 18:04:30 +00:00
|
|
|
disabled: false,
|
2012-12-26 13:08:48 +00:00
|
|
|
dialogClass: "",
|
2011-04-25 18:04:30 +00:00
|
|
|
draggable: true,
|
2012-12-26 13:08:48 +00:00
|
|
|
height: "auto",
|
2011-04-25 18:04:30 +00:00
|
|
|
hide: null,
|
2012-12-07 21:57:03 +00:00
|
|
|
maxHeight: null,
|
|
|
|
maxWidth: null,
|
2011-04-25 18:04:30 +00:00
|
|
|
minHeight: 150,
|
|
|
|
minWidth: 150,
|
|
|
|
modal: false,
|
|
|
|
position: {
|
2012-12-26 13:08:48 +00:00
|
|
|
my: "center",
|
|
|
|
at: "center",
|
2011-04-25 18:04:30 +00:00
|
|
|
of: window,
|
2012-12-26 13:08:48 +00:00
|
|
|
collision: "fit",
|
2011-04-25 18:04:30 +00:00
|
|
|
using: $.ui.dialog.prototype.options.position.using
|
|
|
|
},
|
|
|
|
resizable: true,
|
|
|
|
show: null,
|
2012-11-09 17:26:30 +00:00
|
|
|
title: null,
|
2011-04-25 18:04:30 +00:00
|
|
|
width: 300,
|
2009-02-02 14:36:08 +00:00
|
|
|
|
2011-04-25 18:04:30 +00:00
|
|
|
// callbacks
|
2012-11-09 16:17:32 +00:00
|
|
|
beforeClose: null,
|
|
|
|
close: null,
|
|
|
|
create: null,
|
|
|
|
drag: null,
|
|
|
|
dragStart: null,
|
|
|
|
dragStop: null,
|
|
|
|
focus: null,
|
|
|
|
open: null,
|
|
|
|
resize: null,
|
|
|
|
resizeStart: null,
|
|
|
|
resizeStop: null
|
2011-04-25 18:04:30 +00:00
|
|
|
}
|
|
|
|
});
|