X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/docs/source/DDProxy.html diff --git a/docs/source/DDProxy.html b/docs/source/DDProxy.html index 13952fa7..be5c96bc 100644 --- a/docs/source/DDProxy.html +++ b/docs/source/DDProxy.html @@ -3,8 +3,8 @@ The source code - - + + @@ -23,8 +23,9 @@ * http://developer.yahoo.net/yui/license.txt */ -/** - * @class Ext.dd.DDProxy +/** + * @class Ext.dd.DDProxy + * @extends Ext.dd.DD * A DragDrop implementation that inserts an empty, bordered div into * the document that follows the cursor during drag operations. At the time of * the click, the frame div is resized to the dimensions of the linked html @@ -33,28 +34,29 @@ * References to the "frame" element refer to the single proxy element that * was created to be dragged in place of all DDProxy elements on the * page. - * - * @extends Ext.dd.DD - * @constructor - * @param {String} id the id of the linked html element - * @param {String} sGroup the group of related DragDrop objects - * @param {object} config an object containing configurable attributes - * Valid properties for DDProxy in addition to those in DragDrop: - * resizeFrame, centerFrame, dragElId */ Ext.define('Ext.dd.DDProxy', { extend: 'Ext.dd.DD', statics: { - /** + /** * The default drag frame div id - * @property Ext.dd.DDProxy.dragElId - * @type String * @static */ dragElId: "ygddfdiv" }, + /** + * Creates new DDProxy. + * @param {String} id the id of the linked html element + * @param {String} sGroup the group of related DragDrop objects + * @param {Object} config an object containing configurable attributes. + * Valid properties for DDProxy in addition to those in DragDrop: + * + * - resizeFrame + * - centerFrame + * - dragElId + */ constructor: function(id, sGroup, config) { if (id) { this.init(id, sGroup, config); @@ -67,7 +69,7 @@ Ext.define('Ext.dd.DDProxy', { * we want to drag (this is to get the frame effect). We can turn it off * if we want a different behavior. * @property resizeFrame - * @type boolean + * @type Boolean */ resizeFrame: true, @@ -77,7 +79,7 @@ Ext.define('Ext.dd.DDProxy', { * you do not have constraints on the obj is to have the drag frame centered * around the cursor. Set centerFrame to true for this effect. * @property centerFrame - * @type boolean + * @type Boolean */ centerFrame: false, @@ -135,8 +137,8 @@ Ext.define('Ext.dd.DDProxy', { * Resizes the drag frame to the dimensions of the clicked object, positions * it over the object, and finally displays it * @method showFrame - * @param {int} iPageX X click position - * @param {int} iPageY Y click position + * @param {Number} iPageX X click position + * @param {Number} iPageY Y click position * @private */ showFrame: function(iPageX, iPageY) {