3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4 <title>The source code</title>
5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
8 <body onload="prettyPrint();">
9 <pre class="prettyprint lang-js">/*!
10 * Ext JS Library 3.2.2
11 * Copyright(c) 2006-2010 Ext JS, Inc.
13 * http://www.extjs.com/license
24 POSITION = "position",
26 RELATIVE = "relative",
30 Ext.Element.addMethods({
31 <div id="method-Ext.Element-getX"></div>/**
32 * Gets the current X position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
33 * @return {Number} The X position of the element
36 return D.getX(this.dom);
39 <div id="method-Ext.Element-getY"></div>/**
40 * Gets the current Y position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
41 * @return {Number} The Y position of the element
44 return D.getY(this.dom);
47 <div id="method-Ext.Element-getXY"></div>/**
48 * Gets the current position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
49 * @return {Array} The XY position of the element
52 return D.getXY(this.dom);
55 <div id="method-Ext.Element-getOffsetsTo"></div>/**
56 * Returns the offsets of this element from the passed element. Both element must be part of the DOM tree and not have display:none to have page coordinates.
57 * @param {Mixed} element The element to get the offsets from.
58 * @return {Array} The XY page offsets (e.g. [100, -200])
60 getOffsetsTo : function(el){
62 e = Ext.fly(el, '_internal').getXY();
63 return [o[0]-e[0],o[1]-e[1]];
66 <div id="method-Ext.Element-setX"></div>/**
67 * Sets the X position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
68 * @param {Number} The X position of the element
69 * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
70 * @return {Ext.Element} this
72 setX : function(x, animate){
73 return this.setXY([x, this.getY()], this.animTest(arguments, animate, 1));
76 <div id="method-Ext.Element-setY"></div>/**
77 * Sets the Y position of the element based on page coordinates. Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
78 * @param {Number} The Y position of the element
79 * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
80 * @return {Ext.Element} this
82 setY : function(y, animate){
83 return this.setXY([this.getX(), y], this.animTest(arguments, animate, 1));
86 <div id="method-Ext.Element-setLeft"></div>/**
87 * Sets the element's left position directly using CSS style (instead of {@link #setX}).
88 * @param {String} left The left CSS property value
89 * @return {Ext.Element} this
91 setLeft : function(left){
92 this.setStyle(LEFT, this.addUnits(left));
96 <div id="method-Ext.Element-setTop"></div>/**
97 * Sets the element's top position directly using CSS style (instead of {@link #setY}).
98 * @param {String} top The top CSS property value
99 * @return {Ext.Element} this
101 setTop : function(top){
102 this.setStyle(TOP, this.addUnits(top));
106 <div id="method-Ext.Element-setRight"></div>/**
107 * Sets the element's CSS right style.
108 * @param {String} right The right CSS property value
109 * @return {Ext.Element} this
111 setRight : function(right){
112 this.setStyle(RIGHT, this.addUnits(right));
116 <div id="method-Ext.Element-setBottom"></div>/**
117 * Sets the element's CSS bottom style.
118 * @param {String} bottom The bottom CSS property value
119 * @return {Ext.Element} this
121 setBottom : function(bottom){
122 this.setStyle(BOTTOM, this.addUnits(bottom));
126 <div id="method-Ext.Element-setXY"></div>/**
127 * Sets the position of the element in page coordinates, regardless of how the element is positioned.
128 * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
129 * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
130 * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
131 * @return {Ext.Element} this
133 setXY : function(pos, animate){
135 if(!animate || !me.anim){
136 D.setXY(me.dom, pos);
138 me.anim({points: {to: pos}}, me.preanim(arguments, 1), 'motion');
143 <div id="method-Ext.Element-setLocation"></div>/**
144 * Sets the position of the element in page coordinates, regardless of how the element is positioned.
145 * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
146 * @param {Number} x X value for new position (coordinates are page-based)
147 * @param {Number} y Y value for new position (coordinates are page-based)
148 * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
149 * @return {Ext.Element} this
151 setLocation : function(x, y, animate){
152 return this.setXY([x, y], this.animTest(arguments, animate, 2));
155 <div id="method-Ext.Element-moveTo"></div>/**
156 * Sets the position of the element in page coordinates, regardless of how the element is positioned.
157 * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
158 * @param {Number} x X value for new position (coordinates are page-based)
159 * @param {Number} y Y value for new position (coordinates are page-based)
160 * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
161 * @return {Ext.Element} this
163 moveTo : function(x, y, animate){
164 return this.setXY([x, y], this.animTest(arguments, animate, 2));
167 <div id="method-Ext.Element-getLeft"></div>/**
168 * Gets the left X coordinate
169 * @param {Boolean} local True to get the local css position instead of page coordinate
172 getLeft : function(local){
173 return !local ? this.getX() : parseInt(this.getStyle(LEFT), 10) || 0;
176 <div id="method-Ext.Element-getRight"></div>/**
177 * Gets the right X coordinate of the element (element X position + element width)
178 * @param {Boolean} local True to get the local css position instead of page coordinate
181 getRight : function(local){
183 return !local ? me.getX() + me.getWidth() : (me.getLeft(true) + me.getWidth()) || 0;
186 <div id="method-Ext.Element-getTop"></div>/**
187 * Gets the top Y coordinate
188 * @param {Boolean} local True to get the local css position instead of page coordinate
191 getTop : function(local) {
192 return !local ? this.getY() : parseInt(this.getStyle(TOP), 10) || 0;
195 <div id="method-Ext.Element-getBottom"></div>/**
196 * Gets the bottom Y coordinate of the element (element Y position + element height)
197 * @param {Boolean} local True to get the local css position instead of page coordinate
200 getBottom : function(local){
202 return !local ? me.getY() + me.getHeight() : (me.getTop(true) + me.getHeight()) || 0;
205 <div id="method-Ext.Element-position"></div>/**
206 * Initializes positioning on this element. If a desired position is not passed, it will make the
207 * the element positioned relative IF it is not already positioned.
208 * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
209 * @param {Number} zIndex (optional) The zIndex to apply
210 * @param {Number} x (optional) Set the page X position
211 * @param {Number} y (optional) Set the page Y position
213 position : function(pos, zIndex, x, y){
216 if(!pos && me.isStyle(POSITION, STATIC)){
217 me.setStyle(POSITION, RELATIVE);
219 me.setStyle(POSITION, pos);
222 me.setStyle(ZINDEX, zIndex);
224 if(x || y) me.setXY([x || false, y || false]);
227 <div id="method-Ext.Element-clearPositioning"></div>/**
228 * Clear positioning back to the default when the document was loaded
229 * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
230 * @return {Ext.Element} this
232 clearPositioning : function(value){
245 <div id="method-Ext.Element-getPositioning"></div>/**
246 * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
247 * snapshot before performing an update and then restoring the element.
250 getPositioning : function(){
251 var l = this.getStyle(LEFT);
252 var t = this.getStyle(TOP);
254 "position" : this.getStyle(POSITION),
256 "right" : l ? "" : this.getStyle(RIGHT),
258 "bottom" : t ? "" : this.getStyle(BOTTOM),
259 "z-index" : this.getStyle(ZINDEX)
263 <div id="method-Ext.Element-setPositioning"></div>/**
264 * Set positioning with an object returned by getPositioning().
265 * @param {Object} posCfg
266 * @return {Ext.Element} this
268 setPositioning : function(pc){
270 style = me.dom.style;
274 if(pc.right == AUTO){
277 if(pc.bottom == AUTO){
284 <div id="method-Ext.Element-translatePoints"></div>/**
285 * Translates the passed page coordinates into left/top css values for this element
286 * @param {Number/Array} x The page x or an array containing [x, y]
287 * @param {Number} y (optional) The page y, required if x is not an array
288 * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
290 translatePoints : function(x, y){
291 y = isNaN(x[1]) ? y : x[1];
292 x = isNaN(x[0]) ? x : x[0];
294 relative = me.isStyle(POSITION, RELATIVE),
296 l = parseInt(me.getStyle(LEFT), 10),
297 t = parseInt(me.getStyle(TOP), 10);
299 l = !isNaN(l) ? l : (relative ? 0 : me.dom.offsetLeft);
300 t = !isNaN(t) ? t : (relative ? 0 : me.dom.offsetTop);
302 return {left: (x - o[0] + l), top: (y - o[1] + t)};
305 animTest : function(args, animate, i) {
306 return !!animate && this.preanim ? this.preanim(args, i) : false;