X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6e39d509471fe9b4e2660e0d1631b350d0c66f40..2e847cf21b8ab9d15fa167b315ca5b2fa92638fc:/docs/source/DDCore.html diff --git a/docs/source/DDCore.html b/docs/source/DDCore.html index f7ddb0c5..131e69fb 100644 --- a/docs/source/DDCore.html +++ b/docs/source/DDCore.html @@ -2268,32 +2268,32 @@ Ext.dd.DragDropMgr = function() { return (el) ? el.style : null; }, -
/** +
/** * Inner class for cached elements - * @class DragDropMgr.ElementWrapper + * @class Ext.dd.DragDropMgr.ElementWrapper * @for DragDropMgr * @private * @deprecated */ ElementWrapper: function(el) { -
/** +
/** * The element * @property el */ this.el = el || null; -
/** +
/** * The element id * @property id */ this.id = this.el && el.id; -
/** +
/** * A reference to the style property * @property css */ this.css = this.el && el.style; }, -
/** +
/** * Returns the X position of an html element * @method getPosX * @param el the element for which to get the position @@ -2306,7 +2306,7 @@ Ext.dd.DragDropMgr = function() { return Ext.lib.Dom.getX(el); }, -
/** +
/** * Returns the Y position of an html element * @method getPosY * @param el the element for which to get the position @@ -2318,7 +2318,7 @@ Ext.dd.DragDropMgr = function() { return Ext.lib.Dom.getY(el); }, -
/** +
/** * Swap two nodes. In IE, we use the native method, for others we * emulate the IE behavior * @method swapNode @@ -2364,7 +2364,7 @@ Ext.dd.DragDropMgr = function() { return { top: t, left: l }; }, -
/** +
/** * Returns the specified element style property * @method getStyle * @param {HTMLElement} el the element @@ -2377,7 +2377,7 @@ Ext.dd.DragDropMgr = function() { return Ext.fly(el).getStyle(styleProp); }, -
/** +
/** * Gets the scrollTop * @method getScrollTop * @return {int} the document's scrollTop @@ -2385,7 +2385,7 @@ Ext.dd.DragDropMgr = function() { */ getScrollTop: function () { return this.getScroll().top; }, -
/** +
/** * Gets the scrollLeft * @method getScrollLeft * @return {int} the document's scrollTop @@ -2393,7 +2393,7 @@ Ext.dd.DragDropMgr = function() { */ getScrollLeft: function () { return this.getScroll().left; }, -
/** +
/** * Sets the x/y position of an element to the location of the * target element. * @method moveToEl @@ -2406,7 +2406,7 @@ Ext.dd.DragDropMgr = function() { Ext.lib.Dom.setXY(moveEl, aCoord); }, -
/** +
/** * Numeric array sort function * @method numericSort * @static @@ -2443,7 +2443,7 @@ Ext.dd.DragDropMgr = function() { } }, -
/** +
/** * Recursively searches the immediate parent and all child nodes for * the handle element in order to determine wheter or not it was * clicked.