Skip to main content

Search and Top Navigation

#2028 closed enhancement (fixed)

Opened December 07, 2007 09:34AM UTC

Closed December 08, 2007 02:18PM UTC

Last modified February 26, 2009 11:20AM UTC

X/Y parameters to dialogs, example included

Reported by: jontsa Owned by:
Priority: minor Milestone: 1.5
Component: ui.core Version: 1.2.1
Keywords: Cc:
Blocked by: Blocking:
Description

Please add X/Y parameters to dialog options. The current "position" parameter is too limited so I use the following patch:

Index: /resources/trunk/js/jquery/ui/dialog.js
===================================================================
--- /resources/trunk/js/jquery/ui/dialog.js (revision 8114)
+++ /resources/trunk/js/jquery/ui/dialog.js (revision 8168)
@@ -36,5 +36,7 @@
 			drag: true,
 			resize: true,
-			shadow: false // It's quite slow
+			shadow: false, // It's quite slow
+			x: false,
+			y: false
 		};
 		var o = o || {}; $.extend(options, o); //Extend and copy options
@@ -108,5 +110,5 @@
 					break;
 			}
-			uiDialog.css({top: top, left: left});
+			uiDialog.css({top: options.y?options.y:top, left: options.x?options.x:left});
 			uiDialog.appendTo('body').show();
Attachments (0)
Change History (3)

Changed December 08, 2007 02:18PM UTC by rdworth comment:1

resolution: → fixed
status: newclosed

Fixed in [4076]. position option now accepts an array ([x, y]) in addition to strings.

Changed May 24, 2008 03:39AM UTC by comment:2

milestone: 1.2.2

Milestone 1.2.2 deleted

Changed February 26, 2009 11:20AM UTC by paul comment:3

milestone: → 1.5