控制窗口不能拖拉出主窗口 Dialog And Window

时间:2022-04-06 20:04:37

/* 控制窗口不能拖拉出主窗口(覆写) */
var easyuiPanelOnMove = function(left, top) {
if ($(this).panel(‘options‘).reSizing) return;
var parentObj = $(this).panel(‘panel‘).parent();
var width = $(this).panel(‘options‘).width;
var height = $(this).panel(‘options‘).height;
if (left < 0) { $(this).panel(‘move‘, { left : 0 }); }
if (top < 0) { $(this).panel(‘move‘, { top : 0 }); }
if (parentObj.css("overflow") == "hidden") {
var inline = $.data(this, "window").options.inline;
if (inline == false) { parentObj = $(window); }
if (left > parentObj.width() - width) { $(this).panel(‘move‘, { "left" : parentObj.width() - width }); }
if (top > parentObj.height() - height) { $(this).panel(‘move‘, { "top" : parentObj.height() - height }); }
}
};
$.fn.window.defaults.onMove = easyuiPanelOnMove;
$.fn.dialog.defaults.onMove = easyuiPanelOnMove;

控制窗口不能拖拉出主窗口 Dialog And Window