Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / output / Ext.dd.DragDrop.js
index 5f25eef..2dfd839 100644 (file)
@@ -1,1879 +1 @@
-Ext.data.JsonP.Ext_dd_DragDrop({
-  "allMixins": [
-
-  ],
-  "deprecated": null,
-  "docauthor": null,
-  "members": {
-    "cfg": [
-
-    ],
-    "method": [
-      {
-        "deprecated": null,
-        "alias": null,
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-constructor",
-        "tagname": "method",
-        "protected": false,
-        "shortDoc": "Creates new DragDrop. ...",
-        "static": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>of the element that is linked to this instance</p>\n",
-            "name": "id"
-          },
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the group of related DragDrop objects</p>\n",
-            "name": "sGroup"
-          },
-          {
-            "type": "object",
-            "optional": false,
-            "doc": "<p>an object containing configurable attributes.\nValid properties for DragDrop:</p>\n\n<ul>\n<li>padding</li>\n<li>isTarget</li>\n<li>maintainOffset</li>\n<li>primaryButtonOnly</li>\n</ul>\n\n",
-            "name": "config"
-          }
-        ],
-        "private": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "doc": "<p>Creates new DragDrop.</p>\n",
-        "owner": "Ext.dd.DragDrop",
-        "name": "DragDrop",
-        "html_filename": "DragDrop.html",
-        "return": {
-          "type": "Object",
-          "doc": "\n"
-        },
-        "linenr": 51
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleClass",
-        "shortDoc": "Lets you specify a css class of elements that will not initiate a drag ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the class of the elements you wish to ignore</p>\n",
-            "name": "cssClass"
-          }
-        ],
-        "name": "addInvalidHandleClass",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Lets you specify a css class of elements that will not initiate a drag</p>\n",
-        "linenr": 861,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleId",
-        "shortDoc": "Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the element id of the element you wish to ignore</p>\n",
-            "name": "id"
-          }
-        ],
-        "name": "addInvalidHandleId",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag</p>\n",
-        "linenr": 848,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleType",
-        "shortDoc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the type of element to exclude</p>\n",
-            "name": "tagName"
-          }
-        ],
-        "name": "addInvalidHandleType",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag.</p>\n",
-        "linenr": 836,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-addStatics",
-        "shortDoc": "Add / override static properties of this class. ...",
-        "static": true,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "\n",
-            "name": "members"
-          }
-        ],
-        "name": "addStatics",
-        "owner": "Ext.Base",
-        "doc": "<p>Add / override static properties of this class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n</code></pre>\n",
-        "linenr": 388,
-        "return": {
-          "type": "Ext.Base",
-          "doc": "<p>this</p>\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-addToGroup",
-        "shortDoc": "Adds this instance to a group of related drag/drop objects. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the name of the group</p>\n",
-            "name": "sGroup"
-          }
-        ],
-        "name": "addToGroup",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Adds this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed.</p>\n",
-        "linenr": 705,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-applyConfig",
-        "shortDoc": "Applies the configuration parameters that were passed into the constructor. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "applyConfig",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object.</p>\n",
-        "linenr": 615,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-callOverridden",
-        "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Array/Arguments",
-            "optional": false,
-            "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
-            "name": "args"
-          }
-        ],
-        "name": "callOverridden",
-        "owner": "Ext.Base",
-        "doc": "<p>Call the original method that was previously overridden with <a href=\"#/api/Ext.Base-method-override\" rel=\"Ext.Base-method-override\" class=\"docClass\">Ext.Base.override</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
-        "linenr": 269,
-        "return": {
-          "type": "Mixed",
-          "doc": "<p>Returns the result after calling the overridden method</p>\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": true,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-callParent",
-        "shortDoc": "Call the parent's overridden method. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Array/Arguments",
-            "optional": false,
-            "doc": "<p>The arguments, either an array or the <code>arguments</code> object\nfrom the current method, for example: <code>this.callParent(arguments)</code></p>\n",
-            "name": "args"
-          }
-        ],
-        "name": "callParent",
-        "owner": "Ext.Base",
-        "doc": "<p>Call the parent's overridden method. For example:</p>\n\n<pre><code>Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n</code></pre>\n",
-        "linenr": 124,
-        "return": {
-          "type": "Mixed",
-          "doc": "<p>Returns the result from the superclass' method</p>\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-clearConstraints",
-        "shortDoc": "Clears any constraints applied to this instance. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "clearConstraints",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time.</p>\n",
-        "linenr": 1007,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-clearTicks",
-        "shortDoc": "Clears any tick interval defined for this instance ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "clearTicks",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Clears any tick interval defined for this instance</p>\n",
-        "linenr": 1017,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-constrainTo",
-        "shortDoc": "Initializes the drag drop object's constraints to restrict movement to a certain element. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Mixed",
-            "optional": false,
-            "doc": "<p>The element to constrain to.</p>\n",
-            "name": "constrainTo"
-          },
-          {
-            "type": "Object/Number",
-            "optional": true,
-            "doc": "<p>(optional) Pad provides a way to specify \"padding\" of the constraints,\nand can be either a number for symmetrical padding (4 would be equal to <code>{left:4, right:4, top:4, bottom:4}</code>) or\nan object containing the sides to pad. For example: <code>{right:10, bottom:10}</code></p>\n",
-            "name": "pad"
-          },
-          {
-            "type": "Boolean",
-            "optional": true,
-            "doc": "<p>(optional) Constrain the draggable in the content box of the element (inside padding and borders)</p>\n",
-            "name": "inContent"
-          }
-        ],
-        "name": "constrainTo",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Initializes the drag drop object's constraints to restrict movement to a certain element.</p>\n\n<p>Usage:</p>\n\n<pre><code>var dd = new Ext.dd.DDProxy(\"dragDiv1\", \"proxytest\",\n               { dragElId: \"existingProxyDiv\" });\ndd.startDrag = function(){\n    this.constrainTo(\"parent-id\");\n};\n</code></pre>\n\n<p>Or you can initalize it using the <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Ext.core.Element</a> object:</p>\n\n<pre><code>Ext.get(\"dragDiv1\").initDDProxy(\"proxytest\", {dragElId: \"existingProxyDiv\"}, {\n    startDrag : function(){\n        this.constrainTo(\"parent-id\");\n    }\n});\n</code></pre>\n",
-        "linenr": 478,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-create",
-        "shortDoc": "Create a new instance of this Class. ...",
-        "static": true,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "create",
-        "owner": "Ext.Base",
-        "doc": "<p>Create a new instance of this Class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n</code></pre>\n\n<p>All parameters are passed to the constructor of the class.</p>\n",
-        "linenr": 329,
-        "return": {
-          "type": "Object",
-          "doc": "<p>the created instance.</p>\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-createAlias",
-        "shortDoc": "Create aliases for existing prototype methods. ...",
-        "static": true,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String/Object",
-            "optional": false,
-            "doc": "<p>The new method name, or an object to set multiple aliases. See\n<a href=\"#/api/Ext.Function-method-flexSetter\" rel=\"Ext.Function-method-flexSetter\" class=\"docClass\">flexSetter</a></p>\n",
-            "name": "alias"
-          },
-          {
-            "type": "String/Object",
-            "optional": false,
-            "doc": "<p>The original method name</p>\n",
-            "name": "origin"
-          }
-        ],
-        "name": "createAlias",
-        "owner": "Ext.Base",
-        "doc": "<p>Create aliases for existing prototype methods. Example:</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -&gt; test.method1()\n</code></pre>\n",
-        "linenr": 648,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-endDrag",
-        "shortDoc": "Called when we are done dragging the object ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Event",
-            "optional": false,
-            "doc": "<p>the mouseup event</p>\n",
-            "name": "e"
-          }
-        ],
-        "name": "endDrag",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Called when we are done dragging the object</p>\n",
-        "linenr": 435,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-getDragEl",
-        "shortDoc": "Returns a reference to the actual element to drag. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "getDragEl",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in Ext.dd.DDProxy</p>\n",
-        "linenr": 547,
-        "return": {
-          "type": "HTMLElement",
-          "doc": "<p>the html element</p>\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-getEl",
-        "shortDoc": "Returns a reference to the linked element ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "getEl",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Returns a reference to the linked element</p>\n",
-        "linenr": 535,
-        "return": {
-          "type": "HTMLElement",
-          "doc": "<p>the html element</p>\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-getName",
-        "shortDoc": "Get the current class' name in string format. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "getName",
-        "owner": "Ext.Base",
-        "doc": "<p>Get the current class' name in string format.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n</code></pre>\n",
-        "linenr": 631,
-        "return": {
-          "type": "String",
-          "doc": "<p>className</p>\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-implement",
-        "shortDoc": "Add methods / properties to the prototype of this class. ...",
-        "static": true,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "\n",
-            "name": "members"
-          }
-        ],
-        "name": "implement",
-        "owner": "Ext.Base",
-        "doc": "<p>Add methods / properties to the prototype of this class.</p>\n\n<pre><code>Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n</code></pre>\n",
-        "linenr": 415,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-init",
-        "shortDoc": "Sets up the DragDrop object. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the id of the linked element</p>\n",
-            "name": "id"
-          },
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the group of related items</p>\n",
-            "name": "sGroup"
-          },
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "<p>configuration attributes</p>\n",
-            "name": "config"
-          }
-        ],
-        "name": "init",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Sets up the DragDrop object.  Must be called in the constructor of any\n<a href=\"#/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a> subclass</p>\n",
-        "linenr": 557,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": true,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-initConfig",
-        "shortDoc": "Initialize configuration for this class. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "\n",
-            "name": "config"
-          }
-        ],
-        "name": "initConfig",
-        "owner": "Ext.Base",
-        "doc": "<p>Initialize configuration for this class. a typical example:</p>\n\n<pre><code>Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n</code></pre>\n",
-        "linenr": 63,
-        "return": {
-          "type": "Object",
-          "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-initTarget",
-        "shortDoc": "Initializes Targeting functionality only... ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the id of the linked element</p>\n",
-            "name": "id"
-          },
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the group of related items</p>\n",
-            "name": "sGroup"
-          },
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "<p>configuration attributes</p>\n",
-            "name": "config"
-          }
-        ],
-        "name": "initTarget",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Initializes Targeting functionality only... the object does not\nget a mousedown handler.</p>\n",
-        "linenr": 570,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-isLocked",
-        "shortDoc": "Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on th...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "isLocked",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)</p>\n",
-        "linenr": 783,
-        "return": {
-          "type": "Boolean",
-          "doc": "<p>true if this obj or all drag/drop is locked, else\nfalse</p>\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-isValidHandleChild",
-        "shortDoc": "Checks the tag exclusion list to see if this click should be ignored ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "HTMLElement",
-            "optional": false,
-            "doc": "<p>the HTMLElement to evaluate</p>\n",
-            "name": "node"
-          }
-        ],
-        "name": "isValidHandleChild",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Checks the tag exclusion list to see if this click should be ignored</p>\n",
-        "linenr": 903,
-        "return": {
-          "type": "Boolean",
-          "doc": "<p>true if this is a valid tag type, false if not</p>\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-lock",
-        "shortDoc": "Locks this instance ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "lock",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Locks this instance</p>\n",
-        "linenr": 183,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-onAvailable",
-        "shortDoc": "Override the onAvailable method to do what is needed after the initial\nposition was determined. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "onAvailable",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Override the onAvailable method to do what is needed after the initial\nposition was determined.</p>\n",
-        "linenr": 460,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-onDrag",
-        "shortDoc": "Abstract method called during the onMouseMove event while dragging an\nobject. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Event",
-            "optional": false,
-            "doc": "<p>the mousemove event</p>\n",
-            "name": "e"
-          }
-        ],
-        "name": "onDrag",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Abstract method called during the onMouseMove event while dragging an\nobject.</p>\n",
-        "linenr": 358,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragDrop",
-        "shortDoc": "Abstract method called when this item is dropped on another DragDrop\nobj ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Event",
-            "optional": false,
-            "doc": "<p>the mouseup event</p>\n",
-            "name": "e"
-          },
-          {
-            "type": "String/[DragDrop]",
-            "optional": false,
-            "doc": "<p>In POINT mode, the element\nid this was dropped on.  In INTERSECT mode, an array of dd items this\nwas dropped on.</p>\n",
-            "name": "id"
-          }
-        ],
-        "name": "onDragDrop",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Abstract method called when this item is dropped on another DragDrop\nobj</p>\n",
-        "linenr": 412,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragEnter",
-        "shortDoc": "Abstract method called when this element fist begins hovering over\nanother DragDrop obj ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Event",
-            "optional": false,
-            "doc": "<p>the mousemove event</p>\n",
-            "name": "e"
-          },
-          {
-            "type": "String/[DragDrop]",
-            "optional": false,
-            "doc": "<p>In POINT mode, the element\nid this is hovering over.  In INTERSECT mode, an array of one or more\ndragdrop items being hovered over.</p>\n",
-            "name": "id"
-          }
-        ],
-        "name": "onDragEnter",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Abstract method called when this element fist begins hovering over\nanother DragDrop obj</p>\n",
-        "linenr": 365,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragOut",
-        "shortDoc": "Abstract method called when we are no longer hovering over an element ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Event",
-            "optional": false,
-            "doc": "<p>the mousemove event</p>\n",
-            "name": "e"
-          },
-          {
-            "type": "String/[DragDrop]",
-            "optional": false,
-            "doc": "<p>In POINT mode, the element\nid this was hovering over.  In INTERSECT mode, an array of dd items\nthat the mouse is no longer over.</p>\n",
-            "name": "id"
-          }
-        ],
-        "name": "onDragOut",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Abstract method called when we are no longer hovering over an element</p>\n",
-        "linenr": 397,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragOver",
-        "shortDoc": "Abstract method called when this element is hovering over another\nDragDrop obj ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Event",
-            "optional": false,
-            "doc": "<p>the mousemove event</p>\n",
-            "name": "e"
-          },
-          {
-            "type": "String|DragDrop[]",
-            "optional": false,
-            "doc": "<p>In POINT mode, the element\nid this is hovering over.  In INTERSECT mode, an array of dd items\nbeing hovered over.</p>\n",
-            "name": "id"
-          }
-        ],
-        "name": "onDragOver",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Abstract method called when this element is hovering over another\nDragDrop obj</p>\n",
-        "linenr": 381,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-onInvalidDrop",
-        "shortDoc": "Abstract method called when this item is dropped on an area with no\ndrop target ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Event",
-            "optional": false,
-            "doc": "<p>the mouseup event</p>\n",
-            "name": "e"
-          }
-        ],
-        "name": "onInvalidDrop",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Abstract method called when this item is dropped on an area with no\ndrop target</p>\n",
-        "linenr": 422,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-onMouseDown",
-        "shortDoc": "Called when a drag/drop obj gets a mousedown ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Event",
-            "optional": false,
-            "doc": "<p>the mousedown event</p>\n",
-            "name": "e"
-          }
-        ],
-        "name": "onMouseDown",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Called when a drag/drop obj gets a mousedown</p>\n",
-        "linenr": 448,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-onMouseUp",
-        "shortDoc": "Called when a drag/drop obj gets a mouseup ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Event",
-            "optional": false,
-            "doc": "<p>the mouseup event</p>\n",
-            "name": "e"
-          }
-        ],
-        "name": "onMouseUp",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Called when a drag/drop obj gets a mouseup</p>\n",
-        "linenr": 454,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-override",
-        "shortDoc": "Override prototype members of this class. ...",
-        "static": true,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-          {
-            "type": "Object",
-            "optional": false,
-            "doc": "\n",
-            "name": "members"
-          }
-        ],
-        "name": "override",
-        "owner": "Ext.Base",
-        "doc": "<p>Override prototype members of this class. Overridden methods can be invoked via\n<a href=\"#/api/Ext.Base-method-callOverridden\" rel=\"Ext.Base-method-callOverridden\" class=\"docClass\">Ext.Base.callOverridden</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
-        "linenr": 518,
-        "return": {
-          "type": "Ext.Base",
-          "doc": "<p>this</p>\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-removeFromGroup",
-        "shortDoc": "Removes this instance from the supplied interaction group ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>The group to drop</p>\n",
-            "name": "sGroup"
-          }
-        ],
-        "name": "removeFromGroup",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Removes this instance from the supplied interaction group</p>\n",
-        "linenr": 716,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleClass",
-        "shortDoc": "Unsets an invalid css class ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the class of the element(s) you wish to\nre-enable</p>\n",
-            "name": "cssClass"
-          }
-        ],
-        "name": "removeInvalidHandleClass",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Unsets an invalid css class</p>\n",
-        "linenr": 890,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleId",
-        "shortDoc": "Unsets an invalid handle id ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the id of the element to re-enable</p>\n",
-            "name": "id"
-          }
-        ],
-        "name": "removeInvalidHandleId",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Unsets an invalid handle id</p>\n",
-        "linenr": 879,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleType",
-        "shortDoc": "Unsets an excluded tag name set by addInvalidHandleType ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the type of element to unexclude</p>\n",
-            "name": "tagName"
-          }
-        ],
-        "name": "removeInvalidHandleType",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Unsets an excluded tag name set by addInvalidHandleType</p>\n",
-        "linenr": 869,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-resetConstraints",
-        "shortDoc": "Must be called if you manually reposition a dd element. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "boolean",
-            "optional": false,
-            "doc": "\n",
-            "name": "maintainOffset"
-          }
-        ],
-        "name": "resetConstraints",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Must be called if you manually reposition a dd element.</p>\n",
-        "linenr": 1048,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-setDragElId",
-        "shortDoc": "Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the id of the element that will be used to initiate the drag</p>\n",
-            "name": "id"
-          }
-        ],
-        "name": "setDragElId",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag</p>\n",
-        "linenr": 728,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-setHandleElId",
-        "shortDoc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the id of the element that will be used to\ninitiate the drag.</p>\n",
-            "name": "id"
-          }
-        ],
-        "name": "setHandleElId",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation.</p>\n",
-        "linenr": 737,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-setInitPosition",
-        "shortDoc": "Stores the initial placement of the linked element. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>the X offset, default 0</p>\n",
-            "name": "diffX"
-          },
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>the Y offset, default 0</p>\n",
-            "name": "diffY"
-          }
-        ],
-        "name": "setInitPosition",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Stores the initial placement of the linked element.</p>\n",
-        "linenr": 665,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-setOuterHandleElId",
-        "shortDoc": "Allows you to set an element outside of the linked element as a drag\nhandle ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "String",
-            "optional": false,
-            "doc": "<p>the id of the element that will be used to initiate the drag</p>\n",
-            "name": "id"
-          }
-        ],
-        "name": "setOuterHandleElId",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Allows you to set an element outside of the linked element as a drag\nhandle</p>\n",
-        "linenr": 755,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-setPadding",
-        "shortDoc": "Configures the padding for the target zone in px. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>Top pad</p>\n",
-            "name": "iTop"
-          },
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>Right pad</p>\n",
-            "name": "iRight"
-          },
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>Bot pad</p>\n",
-            "name": "iBot"
-          },
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>Left pad</p>\n",
-            "name": "iLeft"
-          }
-        ],
-        "name": "setPadding",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second.</p>\n",
-        "linenr": 643,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-setXConstraint",
-        "shortDoc": "By default, the element can be dragged any place on the screen. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>the number of pixels the element can move to the left</p>\n",
-            "name": "iLeft"
-          },
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>the number of pixels the element can move to the\nright</p>\n",
-            "name": "iRight"
-          },
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>optional parameter for specifying that the\nelement should move iTickSize pixels at a time.</p>\n",
-            "name": "iTickSize"
-          }
-        ],
-        "name": "setXConstraint",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis.</p>\n",
-        "linenr": 986,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-setYConstraint",
-        "shortDoc": "By default, the element can be dragged any place on the screen. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>the number of pixels the element can move up</p>\n",
-            "name": "iUp"
-          },
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>the number of pixels the element can move down</p>\n",
-            "name": "iDown"
-          },
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>optional parameter for specifying that the\nelement should move iTickSize pixels at a time.</p>\n",
-            "name": "iTickSize"
-          }
-        ],
-        "name": "setYConstraint",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis.</p>\n",
-        "linenr": 1027,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-startDrag",
-        "shortDoc": "Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>click location</p>\n",
-            "name": "X"
-          },
-          {
-            "type": "int",
-            "optional": false,
-            "doc": "<p>click location</p>\n",
-            "name": "Y"
-          }
-        ],
-        "name": "startDrag",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met.</p>\n",
-        "linenr": 344,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": true,
-        "tagname": "method",
-        "href": "Base3.html#Ext-Base-method-statics",
-        "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "statics",
-        "owner": "Ext.Base",
-        "doc": "<p>Get the reference to the class from which this object was instantiated. Note that unlike <a href=\"#/api/Ext.Base-property-self\" rel=\"Ext.Base-property-self\" class=\"docClass\">Ext.Base.self</a>,\n<code>this.statics()</code> is scope-independent and it always returns the class from which it was called, regardless of what\n<code>this</code> points to during run-time</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n</code></pre>\n",
-        "linenr": 199,
-        "return": {
-          "type": "Class",
-          "doc": "\n"
-        },
-        "html_filename": "Base3.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-toString",
-        "shortDoc": "toString method ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "toString",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>toString method</p>\n",
-        "linenr": 1113,
-        "return": {
-          "type": "string",
-          "doc": "<p>string representation of the dd obj</p>\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-unlock",
-        "shortDoc": "Unlocks this instace ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "unlock",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Unlocks this instace</p>\n",
-        "linenr": 198,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "method",
-        "href": "DragDrop.html#Ext-dd-DragDrop-method-unreg",
-        "shortDoc": "Removes all drag and drop hooks for this element ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "params": [
-
-        ],
-        "name": "unreg",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Removes all drag and drop hooks for this element</p>\n",
-        "linenr": 770,
-        "return": {
-          "type": "void",
-          "doc": "\n"
-        },
-        "html_filename": "DragDrop.html"
-      }
-    ],
-    "property": [
-      {
-        "type": "boolean",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-available",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "available",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>The available property is false until the linked dom element is accessible.</p>\n",
-        "linenr": 319,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "object",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-config",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "config",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Configuration attributes passed into the constructor</p>\n",
-        "linenr": 87,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "Object",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-defaultPadding",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "defaultPadding",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Provides default constraint padding to \"constrainTo\" elements (defaults to <code>{left:0, right:0, top:0, bottom:0}</code>).</p>\n",
-        "linenr": 467,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "object",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-groups",
-        "shortDoc": "The group defines a logical collection of DragDrop objects that are\nrelated. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "groups",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>The group defines a logical collection of DragDrop objects that are\nrelated.  Instances only get events when interacting with other\nDragDrop object in the same group.  This lets us define multiple\ngroups using a single DragDrop subclass if we want. An object in the format {'group1':true, 'group2':true}</p>\n",
-        "linenr": 164,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "boolean",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-hasOuterHandles",
-        "shortDoc": "By default, drags can only be initiated if the mousedown occurs in the\nregion the linked element is. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "hasOuterHandles",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>By default, drags can only be initiated if the mousedown occurs in the\nregion the linked element is.  This is done in part to work around a\nbug in some browsers that mis-report the mousedown if the previous\nmouseup happened outside of the window.  This property is set to true\nif outer handles are defined. Defaults to false.</p>\n",
-        "linenr": 326,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "String",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-id",
-        "shortDoc": "The id of the element associated with this object. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "id",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>The id of the element associated with this object.  This is what we\nrefer to as the \"linked element\" because the size and position of\nthis element is used to determine when the drag and drop objects have\ninteracted.</p>\n",
-        "linenr": 77,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "Boolean",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-ignoreSelf",
-        "shortDoc": "Set to false to enable a DragDrop object to fire drag events while dragging\nover its own Element. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "ignoreSelf",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Set to false to enable a DragDrop object to fire drag events while dragging\nover its own Element. Defaults to true - DragDrop objects do not by default\nfire drag events to themselves.</p>\n",
-        "linenr": 69,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "Array",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleClasses",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "invalidHandleClasses",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>An Array of CSS class names for elements to be considered in valid as drag handles.</p>\n",
-        "linenr": 139,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "Object",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleIds",
-        "shortDoc": "An object who's property names identify the IDs of elements to be considered invalid as drag handles. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "invalidHandleIds",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>An object who's property names identify the IDs of elements to be considered invalid as drag handles.\nA non-null property value identifies the ID as invalid. For example, to prevent\ndragging from being initiated on element ID \"foo\", use:</p>\n\n<pre><code>{\n    foo: true\n}</code></pre>\n\n",
-        "linenr": 127,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "Object",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleTypes",
-        "shortDoc": "An object who's property names identify HTML tags to be considered invalid as drag handles. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "invalidHandleTypes",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>An object who's property names identify HTML tags to be considered invalid as drag handles.\nA non-null property value identifies the tag as invalid. Defaults to the\nfollowing value which prevents drag operations from being initiated by &lt;a> elements:</p>\n\n<pre><code>{\n    A: \"A\"\n}</code></pre>\n\n",
-        "linenr": 115,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "boolean",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-isTarget",
-        "shortDoc": "By default, all instances can be a drop target. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "isTarget",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>By default, all instances can be a drop target.  This can be disabled by\nsetting isTarget to false.</p>\n",
-        "linenr": 205,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "boolean",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-maintainOffset",
-        "shortDoc": "Maintain offsets when we resetconstraints. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "maintainOffset",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Maintain offsets when we resetconstraints.  Set to true when you want\nthe position of the element relative to its parent to stay the same\nwhen the page changes</p>\n",
-        "linenr": 283,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "boolean",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-moveOnly",
-        "shortDoc": "When set to true, other DD objects in cooperating DDGroups do not receive\nnotification events when this DD object is ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "moveOnly",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>When set to true, other DD objects in cooperating DDGroups do not receive\nnotification events when this DD object is dragged over them. Defaults to false.</p>\n",
-        "linenr": 190,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "[int]",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-padding",
-        "shortDoc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "padding",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object.\nAn array containing the 4 padding values: [top, right, bottom, left]</p>\n",
-        "linenr": 213,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "boolean",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-primaryButtonOnly",
-        "shortDoc": "By default the drag and drop instance will only respond to the primary\nbutton click (left button for a right-handed m...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "primaryButtonOnly",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>By default the drag and drop instance will only respond to the primary\nbutton click (left button for a right-handed mouse).  Set to true to\nallow drag and drop to start with any mouse click that is propogated\nby the browser</p>\n",
-        "linenr": 309,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "Class",
-        "deprecated": null,
-        "alias": null,
-        "protected": true,
-        "tagname": "property",
-        "href": "Base3.html#Ext-Base-property-self",
-        "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
-        "private": false,
-        "name": "self",
-        "owner": "Ext.Base",
-        "doc": "<p>Get the reference to the current class from which this object was instantiated. Unlike <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>,\n<code>this.self</code> is scope-dependent and it's meant to be used for dynamic inheritance. See <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>\nfor a detailed comparison</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n</code></pre>\n",
-        "linenr": 18,
-        "html_filename": "Base3.html"
-      },
-      {
-        "type": "[int]",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-xTicks",
-        "shortDoc": "Array of pixel locations the element will snap to if we specified a\nhorizontal graduation/interval. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "xTicks",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Array of pixel locations the element will snap to if we specified a\nhorizontal graduation/interval.  This array is generated automatically\nwhen you define a tick interval.</p>\n",
-        "linenr": 293,
-        "html_filename": "DragDrop.html"
-      },
-      {
-        "type": "[int]",
-        "deprecated": null,
-        "alias": null,
-        "protected": false,
-        "tagname": "property",
-        "href": "DragDrop.html#Ext-dd-DragDrop-property-yTicks",
-        "shortDoc": "Array of pixel locations the element will snap to if we specified a\nvertical graduation/interval. ...",
-        "static": false,
-        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-        "private": false,
-        "name": "yTicks",
-        "owner": "Ext.dd.DragDrop",
-        "doc": "<p>Array of pixel locations the element will snap to if we specified a\nvertical graduation/interval.  This array is generated automatically\nwhen you define a tick interval.</p>\n",
-        "linenr": 301,
-        "html_filename": "DragDrop.html"
-      }
-    ],
-    "cssVar": [
-
-    ],
-    "cssMixin": [
-
-    ],
-    "event": [
-
-    ]
-  },
-  "singleton": false,
-  "alias": null,
-  "superclasses": [
-    "Ext.Base"
-  ],
-  "protected": false,
-  "tagname": "class",
-  "mixins": [
-
-  ],
-  "href": "DragDrop.html#Ext-dd-DragDrop",
-  "subclasses": [
-    "Ext.dd.DD",
-    "Ext.dd.DDTarget"
-  ],
-  "static": false,
-  "author": null,
-  "component": false,
-  "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DragDrop.js",
-  "private": false,
-  "alternateClassNames": [
-
-  ],
-  "name": "Ext.dd.DragDrop",
-  "doc": "<p>Defines the interface and base operation of items that that can be\ndragged or can be drop targets.  It was designed to be extended, overriding\nthe event handlers for startDrag, onDrag, onDragOver and onDragOut.\nUp to three html elements can be associated with a DragDrop instance:</p>\n\n<ul>\n<li><p>linked element: the element that is passed into the constructor.\nThis is the element which defines the boundaries for interaction with\nother DragDrop objects.</p></li>\n<li><p>handle element(s): The drag operation only occurs if the element that\nwas clicked matches a handle element.  By default this is the linked\nelement, but there are times that you will want only a portion of the\nlinked element to initiate the drag operation, and the setHandleElId()\nmethod provides a way to define this.</p></li>\n<li><p>drag element: this represents the element that would be moved along\nwith the cursor during a drag operation.  By default, this is the linked\nelement itself as in <a href=\"#/api/Ext.dd.DD\" rel=\"Ext.dd.DD\" class=\"docClass\">Ext.dd.DD</a>.  setDragElId() lets you define\na separate element that would be moved, as in <a href=\"#/api/Ext.dd.DDProxy\" rel=\"Ext.dd.DDProxy\" class=\"docClass\">Ext.dd.DDProxy</a>.</p></li>\n</ul>\n\n\n<p>This class should not be instantiated until the onload event to ensure that\nthe associated elements are available.\nThe following would define a DragDrop obj that would interact with any\nother DragDrop obj in the \"group1\" group:</p>\n\n<pre><code>dd = new Ext.dd.DragDrop(\"div1\", \"group1\");\n</code></pre>\n\n<p>Since none of the event handlers have been implemented, nothing would\nactually happen if you were to run the code above.  Normally you would\noverride this class or one of the default implementations, but you can\nalso override the methods you want on an instance of the class...</p>\n\n<pre><code>dd.onDragDrop = function(e, id) {\n    alert(\"dd was dropped on \" + id);\n}\n</code></pre>\n",
-  "mixedInto": [
-
-  ],
-  "linenr": 10,
-  "xtypes": [
-
-  ],
-  "html_filename": "DragDrop.html",
-  "extends": "Ext.Base"
-});
\ No newline at end of file
+Ext.data.JsonP.Ext_dd_DragDrop({"tagname":"class","html":"<div><pre class=\"hierarchy\"><h4>Hierarchy</h4><div class='subclass first-child'><a href='#!/api/Ext.Base' rel='Ext.Base' class='docClass'>Ext.Base</a><div class='subclass '><strong>Ext.dd.DragDrop</strong></div></div><h4>Requires</h4><div class='dependency'><a href='#!/api/Ext.dd.DragDropManager' rel='Ext.dd.DragDropManager' class='docClass'>Ext.dd.DragDropManager</a></div><h4>Files</h4><div class='dependency'><a href='source/DragDrop.html#Ext-dd-DragDrop' target='_blank'>DragDrop.js</a></div></pre><div class='doc-contents'><p>Defines the interface and base operation of items that that can be\ndragged or can be drop targets.  It was designed to be extended, overriding\nthe event handlers for startDrag, onDrag, onDragOver and onDragOut.\nUp to three html elements can be associated with a DragDrop instance:</p>\n\n<ul>\n<li><p>linked element: the element that is passed into the constructor.\nThis is the element which defines the boundaries for interaction with\nother DragDrop objects.</p></li>\n<li><p>handle element(s): The drag operation only occurs if the element that\nwas clicked matches a handle element.  By default this is the linked\nelement, but there are times that you will want only a portion of the\nlinked element to initiate the drag operation, and the setHandleElId()\nmethod provides a way to define this.</p></li>\n<li><p>drag element: this represents the element that would be moved along\nwith the cursor during a drag operation.  By default, this is the linked\nelement itself as in <a href=\"#!/api/Ext.dd.DD\" rel=\"Ext.dd.DD\" class=\"docClass\">Ext.dd.DD</a>.  setDragElId() lets you define\na separate element that would be moved, as in <a href=\"#!/api/Ext.dd.DDProxy\" rel=\"Ext.dd.DDProxy\" class=\"docClass\">Ext.dd.DDProxy</a>.</p></li>\n</ul>\n\n\n<p>This class should not be instantiated until the onload event to ensure that\nthe associated elements are available.\nThe following would define a DragDrop obj that would interact with any\nother DragDrop obj in the \"group1\" group:</p>\n\n<pre><code>dd = new Ext.dd.DragDrop(\"div1\", \"group1\");\n</code></pre>\n\n<p>Since none of the event handlers have been implemented, nothing would\nactually happen if you were to run the code above.  Normally you would\noverride this class or one of the default implementations, but you can\nalso override the methods you want on an instance of the class...</p>\n\n<pre><code>dd.onDragDrop = function(e, id) {\n    alert(\"dd was dropped on \" + id);\n}\n</code></pre>\n</div><div class='members'><div id='m-property'><div class='definedBy'>Defined By</div><h3 class='members-title'>Properties</h3><div class='subsection'><div id='property-available' class='member first-child not-inherited'><a href='#' class='side not-expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-available' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-available' class='name not-expandable'>available</a><span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span></div><div class='description'><div class='short'><p>The available property is false until the linked dom element is accessible.</p>\n</div><div class='long'><p>The available property is false until the linked dom element is accessible.</p>\n</div></div></div><div id='property-config' class='member  not-inherited'><a href='#' class='side not-expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-config' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-config' class='name not-expandable'>config</a><span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span></div><div class='description'><div class='short'><p>Configuration attributes passed into the constructor</p>\n</div><div class='long'><p>Configuration attributes passed into the constructor</p>\n</div></div></div><div id='property-defaultPadding' class='member  not-inherited'><a href='#' class='side not-expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-defaultPadding' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-defaultPadding' class='name not-expandable'>defaultPadding</a><span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span></div><div class='description'><div class='short'><p>Provides default constraint padding to \"constrainTo\" elements.</p>\n</div><div class='long'><p>Provides default constraint padding to \"constrainTo\" elements.</p>\n</div></div></div><div id='property-groups' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-groups' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-groups' class='name expandable'>groups</a><span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span></div><div class='description'><div class='short'>The group defines a logical collection of DragDrop objects that are\nrelated. ...</div><div class='long'><p>The group defines a logical collection of DragDrop objects that are\nrelated.  Instances only get events when interacting with other\nDragDrop object in the same group.  This lets us define multiple\ngroups using a single DragDrop subclass if we want. An object in the format {'group1':true, 'group2':true}</p>\n</div></div></div><div id='property-hasOuterHandles' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-hasOuterHandles' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-hasOuterHandles' class='name expandable'>hasOuterHandles</a><span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span></div><div class='description'><div class='short'>By default, drags can only be initiated if the mousedown occurs in the\nregion the linked element is. ...</div><div class='long'><p>By default, drags can only be initiated if the mousedown occurs in the\nregion the linked element is.  This is done in part to work around a\nbug in some browsers that mis-report the mousedown if the previous\nmouseup happened outside of the window.  This property is set to true\nif outer handles are defined. Defaults to false.</p>\n</div></div></div><div id='property-id' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-id' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-id' class='name expandable'>id</a><span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a></span></div><div class='description'><div class='short'>The id of the element associated with this object. ...</div><div class='long'><p>The id of the element associated with this object.  This is what we\nrefer to as the \"linked element\" because the size and position of\nthis element is used to determine when the drag and drop objects have\ninteracted.</p>\n</div></div></div><div id='property-ignoreSelf' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-ignoreSelf' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-ignoreSelf' class='name expandable'>ignoreSelf</a><span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span></div><div class='description'><div class='short'>Set to false to enable a DragDrop object to fire drag events while dragging\nover its own Element. ...</div><div class='long'><p>Set to false to enable a DragDrop object to fire drag events while dragging\nover its own Element. Defaults to true - DragDrop objects do not by default\nfire drag events to themselves.</p>\n</div></div></div><div id='property-invalidHandleClasses' class='member  not-inherited'><a href='#' class='side not-expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-invalidHandleClasses' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-invalidHandleClasses' class='name not-expandable'>invalidHandleClasses</a><span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>[]</span></div><div class='description'><div class='short'><p>An Array of CSS class names for elements to be considered in valid as drag handles.</p>\n</div><div class='long'><p>An Array of CSS class names for elements to be considered in valid as drag handles.</p>\n</div></div></div><div id='property-invalidHandleIds' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-invalidHandleIds' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-invalidHandleIds' class='name expandable'>invalidHandleIds</a><span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span></div><div class='description'><div class='short'>An object who's property names identify the IDs of elements to be considered invalid as drag handles. ...</div><div class='long'><p>An object who's property names identify the IDs of elements to be considered invalid as drag handles.\nA non-null property value identifies the ID as invalid. For example, to prevent\ndragging from being initiated on element ID \"foo\", use:</p>\n\n<pre><code>{\n    foo: true\n}</code></pre>\n\n</div></div></div><div id='property-invalidHandleTypes' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-invalidHandleTypes' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-invalidHandleTypes' class='name expandable'>invalidHandleTypes</a><span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span></div><div class='description'><div class='short'>An object who's property names identify HTML tags to be considered invalid as drag handles. ...</div><div class='long'><p>An object who's property names identify HTML tags to be considered invalid as drag handles.\nA non-null property value identifies the tag as invalid. Defaults to the\nfollowing value which prevents drag operations from being initiated by &lt;a> elements:</p>\n\n<pre><code>{\n    A: \"A\"\n}</code></pre>\n\n</div></div></div><div id='property-isTarget' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-isTarget' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-isTarget' class='name expandable'>isTarget</a><span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span></div><div class='description'><div class='short'>By default, all instances can be a drop target. ...</div><div class='long'><p>By default, all instances can be a drop target.  This can be disabled by\nsetting isTarget to false.</p>\n</div></div></div><div id='property-maintainOffset' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-maintainOffset' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-maintainOffset' class='name expandable'>maintainOffset</a><span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span></div><div class='description'><div class='short'>Maintain offsets when we resetconstraints. ...</div><div class='long'><p>Maintain offsets when we resetconstraints.  Set to true when you want\nthe position of the element relative to its parent to stay the same\nwhen the page changes</p>\n</div></div></div><div id='property-moveOnly' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-moveOnly' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-moveOnly' class='name expandable'>moveOnly</a><span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span></div><div class='description'><div class='short'>When set to true, other DD objects in cooperating DDGroups do not receive\nnotification events when this DD object is ...</div><div class='long'><p>When set to true, other DD objects in cooperating DDGroups do not receive\nnotification events when this DD object is dragged over them. Defaults to false.</p>\n</div></div></div><div id='property-padding' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-padding' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-padding' class='name expandable'>padding</a><span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a>[]</span></div><div class='description'><div class='short'>The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object. ...</div><div class='long'><p>The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object.\nAn array containing the 4 padding values: [top, right, bottom, left]</p>\n</div></div></div><div id='property-primaryButtonOnly' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-primaryButtonOnly' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-primaryButtonOnly' class='name expandable'>primaryButtonOnly</a><span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span></div><div class='description'><div class='short'>By default the drag and drop instance will only respond to the primary\nbutton click (left button for a right-handed m...</div><div class='long'><p>By default the drag and drop instance will only respond to the primary\nbutton click (left button for a right-handed mouse).  Set to true to\nallow drag and drop to start with any mouse click that is propogated\nby the browser</p>\n</div></div></div><div id='property-self' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-property-self' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-property-self' class='name expandable'>self</a><span> : <a href=\"#!/api/Ext.Class\" rel=\"Ext.Class\" class=\"docClass\">Ext.Class</a></span><strong class='protected-signature'>protected</strong></div><div class='description'><div class='short'>Get the reference to the current class from which this object was instantiated. ...</div><div class='long'><p>Get the reference to the current class from which this object was instantiated. Unlike <a href=\"#!/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">statics</a>,\n<code>this.self</code> is scope-dependent and it's meant to be used for dynamic inheritance. See <a href=\"#!/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">statics</a>\nfor a detailed comparison</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n</code></pre>\n</div></div></div><div id='property-xTicks' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-xTicks' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-xTicks' class='name expandable'>xTicks</a><span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a>[]</span></div><div class='description'><div class='short'>Array of pixel locations the element will snap to if we specified a\nhorizontal graduation/interval. ...</div><div class='long'><p>Array of pixel locations the element will snap to if we specified a\nhorizontal graduation/interval.  This array is generated automatically\nwhen you define a tick interval.</p>\n</div></div></div><div id='property-yTicks' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-property-yTicks' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-property-yTicks' class='name expandable'>yTicks</a><span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a>[]</span></div><div class='description'><div class='short'>Array of pixel locations the element will snap to if we specified a\nvertical graduation/interval. ...</div><div class='long'><p>Array of pixel locations the element will snap to if we specified a\nvertical graduation/interval.  This array is generated automatically\nwhen you define a tick interval.</p>\n</div></div></div></div></div><div id='m-method'><h3 class='members-title'>Methods</h3><div class='subsection'><div class='definedBy'>Defined By</div><h4 class='members-subtitle'>Instance Methods</h3><div id='method-constructor' class='member first-child not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-constructor' target='_blank' class='viewSource'>view source</a></div><strong class='constructor-signature'>new</strong><a href='#!/api/Ext.dd.DragDrop-method-constructor' class='name expandable'>Ext.dd.DragDrop</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> id, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> sGroup, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> config</span> ) : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></div><div class='description'><div class='short'>Creates new DragDrop. ...</div><div class='long'><p>Creates new DragDrop.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>of the element that is linked to this instance</p>\n</div></li><li><span class='pre'>sGroup</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the group of related DragDrop objects</p>\n</div></li><li><span class='pre'>config</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>an object containing configurable attributes.\nValid properties for DragDrop:</p>\n\n<ul>\n<li>padding</li>\n<li>isTarget</li>\n<li>maintainOffset</li>\n<li>primaryButtonOnly</li>\n</ul>\n\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span><div class='sub-desc'>\n</div></li></ul></div></div></div><div id='method-addInvalidHandleClass' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleClass' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-addInvalidHandleClass' class='name expandable'>addInvalidHandleClass</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> cssClass</span> )</div><div class='description'><div class='short'>Lets you specify a css class of elements that will not initiate a drag ...</div><div class='long'><p>Lets you specify a css class of elements that will not initiate a drag</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>cssClass</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the class of the elements you wish to ignore</p>\n</div></li></ul></div></div></div><div id='method-addInvalidHandleId' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleId' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-addInvalidHandleId' class='name expandable'>addInvalidHandleId</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> id</span> )</div><div class='description'><div class='short'>Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag ...</div><div class='long'><p>Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the element id of the element you wish to ignore</p>\n</div></li></ul></div></div></div><div id='method-addInvalidHandleType' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleType' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-addInvalidHandleType' class='name expandable'>addInvalidHandleType</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> tagName</span> )</div><div class='description'><div class='short'>Allows you to specify a tag name that should not start a drag operation\nwhen clicked. ...</div><div class='long'><p>Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate embedding links within a\ndrag handle that do something other than start the drag.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>tagName</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the type of element to exclude</p>\n</div></li></ul></div></div></div><div id='method-addToGroup' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-addToGroup' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-addToGroup' class='name expandable'>addToGroup</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> sGroup</span> )</div><div class='description'><div class='short'>Adds this instance to a group of related drag/drop objects. ...</div><div class='long'><p>Adds this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belong to as many\ngroups as needed.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>sGroup</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the name of the group</p>\n</div></li></ul></div></div></div><div id='method-applyConfig' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-applyConfig' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-applyConfig' class='name expandable'>applyConfig</a>( <span class='pre'></span> )</div><div class='description'><div class='short'>Applies the configuration parameters that were passed into the constructor. ...</div><div class='long'><p>Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level through the inheritance chain.  So\na DDProxy implentation will execute apply config on DDProxy, DD, and\nDragDrop in order to get all of the parameters that are available in\neach object.</p>\n</div></div></div><div id='method-callOverridden' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-method-callOverridden' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-method-callOverridden' class='name expandable'>callOverridden</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/Arguments args</span> ) : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><strong class='protected-signature'>protected</strong></div><div class='description'><div class='short'>Call the original method that was previously overridden with override\n\nExt.define('My.Cat', {\n    constructor: functi...</div><div class='long'><p>Call the original method that was previously overridden with <a href=\"#!/api/Ext.Base-static-method-override\" rel=\"Ext.Base-static-method-override\" class=\"docClass\">override</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>args</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/Arguments<div class='sub-desc'><p>The arguments, either an array or the <code>arguments</code> object</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span><div class='sub-desc'><p>Returns the result after calling the overridden method</p>\n</div></li></ul></div></div></div><div id='method-callParent' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-method-callParent' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-method-callParent' class='name expandable'>callParent</a>( <span class='pre'><a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/Arguments args</span> ) : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><strong class='protected-signature'>protected</strong></div><div class='description'><div class='short'>Call the parent's overridden method. ...</div><div class='long'><p>Call the parent's overridden method. For example:</p>\n\n<pre><code>Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>args</span> : <a href=\"#!/api/Array\" rel=\"Array\" class=\"docClass\">Array</a>/Arguments<div class='sub-desc'><p>The arguments, either an array or the <code>arguments</code> object\nfrom the current method, for example: <code>this.callParent(arguments)</code></p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span><div class='sub-desc'><p>Returns the result from the superclass' method</p>\n</div></li></ul></div></div></div><div id='method-clearConstraints' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-clearConstraints' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-clearConstraints' class='name expandable'>clearConstraints</a>( <span class='pre'></span> )</div><div class='description'><div class='short'>Clears any constraints applied to this instance. ...</div><div class='long'><p>Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constraint at this time.</p>\n</div></div></div><div id='method-clearTicks' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-clearTicks' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-clearTicks' class='name expandable'>clearTicks</a>( <span class='pre'></span> )</div><div class='description'><div class='short'>Clears any tick interval defined for this instance ...</div><div class='long'><p>Clears any tick interval defined for this instance</p>\n</div></div></div><div id='method-constrainTo' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-constrainTo' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-constrainTo' class='name expandable'>constrainTo</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/HTMLElement/<a href=\"#!/api/Ext.Element\" rel=\"Ext.Element\" class=\"docClass\">Ext.Element</a> constrainTo, [<a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a>/<a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> pad], [<a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a> inContent]</span> )</div><div class='description'><div class='short'>Initializes the drag drop object's constraints to restrict movement to a certain element. ...</div><div class='long'><p>Initializes the drag drop object's constraints to restrict movement to a certain element.</p>\n\n<p>Usage:</p>\n\n<pre><code>var dd = new Ext.dd.DDProxy(\"dragDiv1\", \"proxytest\",\n               { dragElId: \"existingProxyDiv\" });\ndd.startDrag = function(){\n    this.constrainTo(\"parent-id\");\n};\n</code></pre>\n\n<p>Or you can initalize it using the <a href=\"#!/api/Ext.Element\" rel=\"Ext.Element\" class=\"docClass\">Ext.Element</a> object:</p>\n\n<pre><code>Ext.get(\"dragDiv1\").initDDProxy(\"proxytest\", {dragElId: \"existingProxyDiv\"}, {\n    startDrag : function(){\n        this.constrainTo(\"parent-id\");\n    }\n});\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>constrainTo</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/HTMLElement/<a href=\"#!/api/Ext.Element\" rel=\"Ext.Element\" class=\"docClass\">Ext.Element</a><div class='sub-desc'><p>The element or element ID to constrain to.</p>\n</div></li><li><span class='pre'>pad</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a>/<a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> (optional)<div class='sub-desc'><p>Pad provides a way to specify \"padding\" of the constraints,\nand can be either a number for symmetrical padding (4 would be equal to <code>{left:4, right:4, top:4, bottom:4}</code>) or\nan object containing the sides to pad. For example: <code>{right:10, bottom:10}</code></p>\n</div></li><li><span class='pre'>inContent</span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a> (optional)<div class='sub-desc'><p>Constrain the draggable in the content box of the element (inside padding and borders)</p>\n</div></li></ul></div></div></div><div id='method-endDrag' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-endDrag' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-endDrag' class='name expandable'>endDrag</a>( <span class='pre'>Event e</span> )</div><div class='description'><div class='short'>Called when we are done dragging the object ...</div><div class='long'><p>Called when we are done dragging the object</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>e</span> : Event<div class='sub-desc'><p>the mouseup event</p>\n</div></li></ul></div></div></div><div id='method-getDragEl' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-getDragEl' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-getDragEl' class='name expandable'>getDragEl</a>( <span class='pre'></span> ) : HTMLElement</div><div class='description'><div class='short'>Returns a reference to the actual element to drag. ...</div><div class='long'><p>Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be assigned to another\nelement. An example of this can be found in <a href=\"#!/api/Ext.dd.DDProxy\" rel=\"Ext.dd.DDProxy\" class=\"docClass\">Ext.dd.DDProxy</a></p>\n<h3 class='pa'>Returns</h3><ul><li><span class='pre'>HTMLElement</span><div class='sub-desc'><p>the html element</p>\n</div></li></ul></div></div></div><div id='method-getEl' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-getEl' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-getEl' class='name expandable'>getEl</a>( <span class='pre'></span> ) : HTMLElement</div><div class='description'><div class='short'>Returns a reference to the linked element ...</div><div class='long'><p>Returns a reference to the linked element</p>\n<h3 class='pa'>Returns</h3><ul><li><span class='pre'>HTMLElement</span><div class='sub-desc'><p>the html element</p>\n</div></li></ul></div></div></div><div id='method-init' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-init' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-init' class='name expandable'>init</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> id, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> sGroup, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> config</span> )</div><div class='description'><div class='short'>Sets up the DragDrop object. ...</div><div class='long'><p>Sets up the DragDrop object.  Must be called in the constructor of any\n<a href=\"#!/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a> subclass</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the id of the linked element</p>\n</div></li><li><span class='pre'>sGroup</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the group of related items</p>\n</div></li><li><span class='pre'>config</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>configuration attributes</p>\n</div></li></ul></div></div></div><div id='method-initConfig' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-method-initConfig' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-method-initConfig' class='name expandable'>initConfig</a>( <span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> config</span> ) : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><strong class='protected-signature'>protected</strong></div><div class='description'><div class='short'>Initialize configuration for this class. ...</div><div class='long'><p>Initialize configuration for this class. a typical example:</p>\n\n<pre><code>Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>config</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span><div class='sub-desc'><p>mixins The mixin prototypes as key - value pairs</p>\n</div></li></ul></div></div></div><div id='method-initTarget' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-initTarget' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-initTarget' class='name expandable'>initTarget</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> id, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> sGroup, <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> config</span> )</div><div class='description'><div class='short'>Initializes Targeting functionality only... ...</div><div class='long'><p>Initializes Targeting functionality only... the object does not\nget a mousedown handler.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the id of the linked element</p>\n</div></li><li><span class='pre'>sGroup</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the group of related items</p>\n</div></li><li><span class='pre'>config</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>configuration attributes</p>\n</div></li></ul></div></div></div><div id='method-isLocked' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-isLocked' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-isLocked' class='name expandable'>isLocked</a>( <span class='pre'></span> ) : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></div><div class='description'><div class='short'>Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on th...</div><div class='long'><p>Returns true if this instance is locked, or the drag drop mgr is locked\n(meaning that all drag/drop is disabled on the page.)</p>\n<h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span><div class='sub-desc'><p>true if this obj or all drag/drop is locked, else\nfalse</p>\n</div></li></ul></div></div></div><div id='method-isValidHandleChild' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-isValidHandleChild' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-isValidHandleChild' class='name expandable'>isValidHandleChild</a>( <span class='pre'>HTMLElement node</span> ) : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></div><div class='description'><div class='short'>Checks the tag exclusion list to see if this click should be ignored ...</div><div class='long'><p>Checks the tag exclusion list to see if this click should be ignored</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>node</span> : HTMLElement<div class='sub-desc'><p>the HTMLElement to evaluate</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a></span><div class='sub-desc'><p>true if this is a valid tag type, false if not</p>\n</div></li></ul></div></div></div><div id='method-lock' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-lock' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-lock' class='name expandable'>lock</a>( <span class='pre'></span> )</div><div class='description'><div class='short'>Locks this instance ...</div><div class='long'><p>Locks this instance</p>\n</div></div></div><div id='method-onAvailable' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-onAvailable' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-onAvailable' class='name expandable'>onAvailable</a>( <span class='pre'></span> )</div><div class='description'><div class='short'>Override the onAvailable method to do what is needed after the initial\nposition was determined. ...</div><div class='long'><p>Override the onAvailable method to do what is needed after the initial\nposition was determined.</p>\n</div></div></div><div id='method-onDrag' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-onDrag' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-onDrag' class='name expandable'>onDrag</a>( <span class='pre'>Event e</span> )</div><div class='description'><div class='short'>Abstract method called during the onMouseMove event while dragging an\nobject. ...</div><div class='long'><p>Abstract method called during the onMouseMove event while dragging an\nobject.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>e</span> : Event<div class='sub-desc'><p>the mousemove event</p>\n</div></li></ul></div></div></div><div id='method-onDragDrop' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-onDragDrop' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-onDragDrop' class='name expandable'>onDragDrop</a>( <span class='pre'>Event e, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a>[] id</span> )</div><div class='description'><div class='short'>Abstract method called when this item is dropped on another DragDrop\nobj ...</div><div class='long'><p>Abstract method called when this item is dropped on another DragDrop\nobj</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>e</span> : Event<div class='sub-desc'><p>the mouseup event</p>\n</div></li><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a>[]<div class='sub-desc'><p>In POINT mode, the element\nid this was dropped on.  In INTERSECT mode, an array of dd items this\nwas dropped on.</p>\n</div></li></ul></div></div></div><div id='method-onDragEnter' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-onDragEnter' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-onDragEnter' class='name expandable'>onDragEnter</a>( <span class='pre'>Event e, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a>[] id</span> )</div><div class='description'><div class='short'>Abstract method called when this element fist begins hovering over\nanother DragDrop obj ...</div><div class='long'><p>Abstract method called when this element fist begins hovering over\nanother DragDrop obj</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>e</span> : Event<div class='sub-desc'><p>the mousemove event</p>\n</div></li><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a>[]<div class='sub-desc'><p>In POINT mode, the element\nid this is hovering over.  In INTERSECT mode, an array of one or more\ndragdrop items being hovered over.</p>\n</div></li></ul></div></div></div><div id='method-onDragOut' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-onDragOut' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-onDragOut' class='name expandable'>onDragOut</a>( <span class='pre'>Event e, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a>[] id</span> )</div><div class='description'><div class='short'>Abstract method called when we are no longer hovering over an element ...</div><div class='long'><p>Abstract method called when we are no longer hovering over an element</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>e</span> : Event<div class='sub-desc'><p>the mousemove event</p>\n</div></li><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a>[]<div class='sub-desc'><p>In POINT mode, the element\nid this was hovering over.  In INTERSECT mode, an array of dd items\nthat the mouse is no longer over.</p>\n</div></li></ul></div></div></div><div id='method-onDragOver' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-onDragOver' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-onDragOver' class='name expandable'>onDragOver</a>( <span class='pre'>Event e, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a>[] id</span> )</div><div class='description'><div class='short'>Abstract method called when this element is hovering over another\nDragDrop obj ...</div><div class='long'><p>Abstract method called when this element is hovering over another\nDragDrop obj</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>e</span> : Event<div class='sub-desc'><p>the mousemove event</p>\n</div></li><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Ext.dd.DragDrop\" rel=\"Ext.dd.DragDrop\" class=\"docClass\">Ext.dd.DragDrop</a>[]<div class='sub-desc'><p>In POINT mode, the element\nid this is hovering over.  In INTERSECT mode, an array of dd items\nbeing hovered over.</p>\n</div></li></ul></div></div></div><div id='method-onInvalidDrop' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-onInvalidDrop' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-onInvalidDrop' class='name expandable'>onInvalidDrop</a>( <span class='pre'>Event e</span> )</div><div class='description'><div class='short'>Abstract method called when this item is dropped on an area with no\ndrop target ...</div><div class='long'><p>Abstract method called when this item is dropped on an area with no\ndrop target</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>e</span> : Event<div class='sub-desc'><p>the mouseup event</p>\n</div></li></ul></div></div></div><div id='method-onMouseDown' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-onMouseDown' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-onMouseDown' class='name expandable'>onMouseDown</a>( <span class='pre'>Event e</span> )</div><div class='description'><div class='short'>Called when a drag/drop obj gets a mousedown ...</div><div class='long'><p>Called when a drag/drop obj gets a mousedown</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>e</span> : Event<div class='sub-desc'><p>the mousedown event</p>\n</div></li></ul></div></div></div><div id='method-onMouseUp' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-onMouseUp' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-onMouseUp' class='name expandable'>onMouseUp</a>( <span class='pre'>Event e</span> )</div><div class='description'><div class='short'>Called when a drag/drop obj gets a mouseup ...</div><div class='long'><p>Called when a drag/drop obj gets a mouseup</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>e</span> : Event<div class='sub-desc'><p>the mouseup event</p>\n</div></li></ul></div></div></div><div id='method-removeFromGroup' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-removeFromGroup' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-removeFromGroup' class='name expandable'>removeFromGroup</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> sGroup</span> )</div><div class='description'><div class='short'>Removes this instance from the supplied interaction group ...</div><div class='long'><p>Removes this instance from the supplied interaction group</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>sGroup</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>The group to drop</p>\n</div></li></ul></div></div></div><div id='method-removeInvalidHandleClass' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleClass' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-removeInvalidHandleClass' class='name expandable'>removeInvalidHandleClass</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> cssClass</span> )</div><div class='description'><div class='short'>Unsets an invalid css class ...</div><div class='long'><p>Unsets an invalid css class</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>cssClass</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the class of the element(s) you wish to\nre-enable</p>\n</div></li></ul></div></div></div><div id='method-removeInvalidHandleId' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleId' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-removeInvalidHandleId' class='name expandable'>removeInvalidHandleId</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> id</span> )</div><div class='description'><div class='short'>Unsets an invalid handle id ...</div><div class='long'><p>Unsets an invalid handle id</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the id of the element to re-enable</p>\n</div></li></ul></div></div></div><div id='method-removeInvalidHandleType' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleType' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-removeInvalidHandleType' class='name expandable'>removeInvalidHandleType</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> tagName</span> )</div><div class='description'><div class='short'>Unsets an excluded tag name set by addInvalidHandleType ...</div><div class='long'><p>Unsets an excluded tag name set by addInvalidHandleType</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>tagName</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the type of element to unexclude</p>\n</div></li></ul></div></div></div><div id='method-resetConstraints' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-resetConstraints' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-resetConstraints' class='name expandable'>resetConstraints</a>( <span class='pre'><a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a> maintainOffset</span> )</div><div class='description'><div class='short'>Must be called if you manually reposition a dd element. ...</div><div class='long'><p>Must be called if you manually reposition a dd element.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>maintainOffset</span> : <a href=\"#!/api/Boolean\" rel=\"Boolean\" class=\"docClass\">Boolean</a><div class='sub-desc'>\n</div></li></ul></div></div></div><div id='method-setDragElId' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-setDragElId' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-setDragElId' class='name expandable'>setDragElId</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> id</span> )</div><div class='description'><div class='short'>Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag ...</div><div class='long'><p>Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the id of the element that will be used to initiate the drag</p>\n</div></li></ul></div></div></div><div id='method-setHandleElId' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-setHandleElId' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-setHandleElId' class='name expandable'>setHandleElId</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> id</span> )</div><div class='description'><div class='short'>Allows you to specify a child of the linked element that should be\nused to initiate the drag operation. ...</div><div class='long'><p>Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example of this would be if\nyou have a content div with text and links.  Clicking anywhere in the\ncontent area would normally start the drag operation.  Use this method\nto specify that an element inside of the content div is the element\nthat starts the drag operation.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the id of the element that will be used to\ninitiate the drag.</p>\n</div></li></ul></div></div></div><div id='method-setInitPosition' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-setInitPosition' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-setInitPosition' class='name expandable'>setInitPosition</a>( <span class='pre'><a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> diffX, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> diffY</span> )</div><div class='description'><div class='short'>Stores the initial placement of the linked element. ...</div><div class='long'><p>Stores the initial placement of the linked element.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>diffX</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>the X offset, default 0</p>\n</div></li><li><span class='pre'>diffY</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>the Y offset, default 0</p>\n</div></li></ul></div></div></div><div id='method-setOuterHandleElId' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-setOuterHandleElId' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-setOuterHandleElId' class='name expandable'>setOuterHandleElId</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a> id</span> )</div><div class='description'><div class='short'>Allows you to set an element outside of the linked element as a drag\nhandle ...</div><div class='long'><p>Allows you to set an element outside of the linked element as a drag\nhandle</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>id</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><div class='sub-desc'><p>the id of the element that will be used to initiate the drag</p>\n</div></li></ul></div></div></div><div id='method-setPadding' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-setPadding' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-setPadding' class='name expandable'>setPadding</a>( <span class='pre'><a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iTop, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iRight, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iBot, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iLeft</span> )</div><div class='description'><div class='short'>Configures the padding for the target zone in px. ...</div><div class='long'><p>Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targeting calculations.\nSupports css-style shorthand; if only one parameter is passed, all sides\nwill have that padding, and if only two are passed, the top and bottom\nwill have the first param, the left and right the second.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>iTop</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>Top pad</p>\n</div></li><li><span class='pre'>iRight</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>Right pad</p>\n</div></li><li><span class='pre'>iBot</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>Bot pad</p>\n</div></li><li><span class='pre'>iLeft</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>Left pad</p>\n</div></li></ul></div></div></div><div id='method-setXConstraint' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-setXConstraint' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-setXConstraint' class='name expandable'>setXConstraint</a>( <span class='pre'><a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iLeft, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iRight, [<a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iTickSize]</span> )</div><div class='description'><div class='short'>By default, the element can be dragged any place on the screen. ...</div><div class='long'><p>By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of the element.  Pass in\n0,0 for the parameters if you want to lock the drag to the y axis.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>iLeft</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>the number of pixels the element can move to the left</p>\n</div></li><li><span class='pre'>iRight</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>the number of pixels the element can move to the\nright</p>\n</div></li><li><span class='pre'>iTickSize</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> (optional)<div class='sub-desc'><p>parameter for specifying that the\nelement should move iTickSize pixels at a time.</p>\n</div></li></ul></div></div></div><div id='method-setYConstraint' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-setYConstraint' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-setYConstraint' class='name expandable'>setYConstraint</a>( <span class='pre'><a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iUp, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iDown, [<a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> iTickSize]</span> )</div><div class='description'><div class='short'>By default, the element can be dragged any place on the screen. ...</div><div class='long'><p>By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element.  Pass in 0,0 for the\nparameters if you want to lock the drag to the x axis.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>iUp</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>the number of pixels the element can move up</p>\n</div></li><li><span class='pre'>iDown</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>the number of pixels the element can move down</p>\n</div></li><li><span class='pre'>iTickSize</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> (optional)<div class='sub-desc'><p>parameter for specifying that the\nelement should move iTickSize pixels at a time.</p>\n</div></li></ul></div></div></div><div id='method-startDrag' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-startDrag' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-startDrag' class='name expandable'>startDrag</a>( <span class='pre'><a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> X, <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a> Y</span> )</div><div class='description'><div class='short'>Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met. ...</div><div class='long'><p>Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met.</p>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>X</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>click location</p>\n</div></li><li><span class='pre'>Y</span> : <a href=\"#!/api/Number\" rel=\"Number\" class=\"docClass\">Number</a><div class='sub-desc'><p>click location</p>\n</div></li></ul></div></div></div><div id='method-statics' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-method-statics' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-method-statics' class='name expandable'>statics</a>( <span class='pre'></span> ) : <a href=\"#!/api/Ext.Class\" rel=\"Ext.Class\" class=\"docClass\">Ext.Class</a><strong class='protected-signature'>protected</strong></div><div class='description'><div class='short'>Get the reference to the class from which this object was instantiated. ...</div><div class='long'><p>Get the reference to the class from which this object was instantiated. Note that unlike <a href=\"#!/api/Ext.Base-property-self\" rel=\"Ext.Base-property-self\" class=\"docClass\">self</a>,\n<code>this.statics()</code> is scope-independent and it always returns the class from which it was called, regardless of what\n<code>this</code> points to during run-time</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n</code></pre>\n<h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Ext.Class\" rel=\"Ext.Class\" class=\"docClass\">Ext.Class</a></span><div class='sub-desc'>\n</div></li></ul></div></div></div><div id='method-toString' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-toString' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-toString' class='name expandable'>toString</a>( <span class='pre'></span> ) : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a></div><div class='description'><div class='short'>toString method ...</div><div class='long'><p>toString method</p>\n<h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a></span><div class='sub-desc'><p>string representation of the dd obj</p>\n</div></li></ul></div></div></div><div id='method-unlock' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-unlock' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-unlock' class='name expandable'>unlock</a>( <span class='pre'></span> )</div><div class='description'><div class='short'>Unlocks this instace ...</div><div class='long'><p>Unlocks this instace</p>\n</div></div></div><div id='method-unreg' class='member  not-inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.dd.DragDrop' rel='Ext.dd.DragDrop' class='definedIn docClass'>Ext.dd.DragDrop</a><br/><a href='source/DragDrop.html#Ext-dd-DragDrop-method-unreg' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.dd.DragDrop-method-unreg' class='name expandable'>unreg</a>( <span class='pre'></span> )</div><div class='description'><div class='short'>Removes all drag and drop hooks for this element ...</div><div class='long'><p>Removes all drag and drop hooks for this element</p>\n</div></div></div></div><div class='subsection'><div class='definedBy'>Defined By</div><h4 class='members-subtitle'>Static Methods</h3><div id='static-method-addStatics' class='member first-child inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-static-method-addStatics' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-static-method-addStatics' class='name expandable'>addStatics</a>( <span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> members</span> ) : <a href=\"#!/api/Ext.Base\" rel=\"Ext.Base\" class=\"docClass\">Ext.Base</a><strong class='static-signature'>static</strong></div><div class='description'><div class='short'>Add / override static properties of this class. ...</div><div class='long'><p>Add / override static properties of this class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>members</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Ext.Base\" rel=\"Ext.Base\" class=\"docClass\">Ext.Base</a></span><div class='sub-desc'><p>this</p>\n</div></li></ul></div></div></div><div id='static-method-borrow' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-static-method-borrow' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-static-method-borrow' class='name expandable'>borrow</a>( <span class='pre'><a href=\"#!/api/Ext.Base\" rel=\"Ext.Base\" class=\"docClass\">Ext.Base</a> fromClass, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>[] members</span> ) : <a href=\"#!/api/Ext.Base\" rel=\"Ext.Base\" class=\"docClass\">Ext.Base</a><strong class='static-signature'>static</strong></div><div class='description'><div class='short'>Borrow another class' members to the prototype of this class. ...</div><div class='long'><p>Borrow another class' members to the prototype of this class.</p>\n\n<pre><code>Ext.define('Bank', {\n    money: '$$$',\n    printMoney: function() {\n        alert('$$$$$$$');\n    }\n});\n\nExt.define('Thief', {\n    ...\n});\n\nThief.borrow(Bank, ['money', 'printMoney']);\n\nvar steve = new Thief();\n\nalert(steve.money); // alerts '$$$'\nsteve.printMoney(); // alerts '$$$$$$$'\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>fromClass</span> : <a href=\"#!/api/Ext.Base\" rel=\"Ext.Base\" class=\"docClass\">Ext.Base</a><div class='sub-desc'><p>The class to borrow members from</p>\n</div></li><li><span class='pre'>members</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>[]<div class='sub-desc'><p>The names of the members to borrow</p>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Ext.Base\" rel=\"Ext.Base\" class=\"docClass\">Ext.Base</a></span><div class='sub-desc'><p>this</p>\n</div></li></ul></div></div></div><div id='static-method-create' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-static-method-create' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-static-method-create' class='name expandable'>create</a>( <span class='pre'></span> ) : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><strong class='static-signature'>static</strong></div><div class='description'><div class='short'>Create a new instance of this Class. ...</div><div class='long'><p>Create a new instance of this Class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n</code></pre>\n\n<p>All parameters are passed to the constructor of the class.</p>\n<h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a></span><div class='sub-desc'><p>the created instance.</p>\n</div></li></ul></div></div></div><div id='static-method-createAlias' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-static-method-createAlias' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-static-method-createAlias' class='name expandable'>createAlias</a>( <span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> alias, <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> origin</span> )<strong class='static-signature'>static</strong></div><div class='description'><div class='short'>Create aliases for existing prototype methods. ...</div><div class='long'><p>Create aliases for existing prototype methods. Example:</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -&gt; test.method1()\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>alias</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The new method name, or an object to set multiple aliases. See\n<a href=\"#!/api/Ext.Function-method-flexSetter\" rel=\"Ext.Function-method-flexSetter\" class=\"docClass\">flexSetter</a></p>\n</div></li><li><span class='pre'>origin</span> : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a>/<a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'><p>The original method name</p>\n</div></li></ul></div></div></div><div id='static-method-getName' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-static-method-getName' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-static-method-getName' class='name expandable'>getName</a>( <span class='pre'></span> ) : <a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a><strong class='static-signature'>static</strong></div><div class='description'><div class='short'>Get the current class' name in string format. ...</div><div class='long'><p>Get the current class' name in string format.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n</code></pre>\n<h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/String\" rel=\"String\" class=\"docClass\">String</a></span><div class='sub-desc'><p>className</p>\n</div></li></ul></div></div></div><div id='static-method-implement' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-static-method-implement' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-static-method-implement' class='name expandable'>implement</a>( <span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> members</span> )<strong class='static-signature'>static</strong></div><div class='description'><div class='short'>Add methods / properties to the prototype of this class. ...</div><div class='long'><p>Add methods / properties to the prototype of this class.</p>\n\n<pre><code>Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>members</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'>\n</div></li></ul></div></div></div><div id='static-method-override' class='member  inherited'><a href='#' class='side expandable'><span>&nbsp;</span></a><div class='title'><div class='meta'><a href='#!/api/Ext.Base' rel='Ext.Base' class='definedIn docClass'>Ext.Base</a><br/><a href='source/Base3.html#Ext-Base-static-method-override' target='_blank' class='viewSource'>view source</a></div><a href='#!/api/Ext.Base-static-method-override' class='name expandable'>override</a>( <span class='pre'><a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a> members</span> ) : <a href=\"#!/api/Ext.Base\" rel=\"Ext.Base\" class=\"docClass\">Ext.Base</a><strong class='static-signature'>static</strong></div><div class='description'><div class='short'>Override prototype members of this class. ...</div><div class='long'><p>Override prototype members of this class. Overridden methods can be invoked via\n<a href=\"#!/api/Ext.Base-method-callOverridden\" rel=\"Ext.Base-method-callOverridden\" class=\"docClass\">callOverridden</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n<h3 class=\"pa\">Parameters</h3><ul><li><span class='pre'>members</span> : <a href=\"#!/api/Object\" rel=\"Object\" class=\"docClass\">Object</a><div class='sub-desc'>\n</div></li></ul><h3 class='pa'>Returns</h3><ul><li><span class='pre'><a href=\"#!/api/Ext.Base\" rel=\"Ext.Base\" class=\"docClass\">Ext.Base</a></span><div class='sub-desc'><p>this</p>\n</div></li></ul></div></div></div></div></div></div></div>","allMixins":[],"meta":{},"requires":["Ext.dd.DragDropManager"],"deprecated":null,"extends":"Ext.Base","inheritable":false,"static":false,"superclasses":["Ext.Base","Ext.dd.DragDrop"],"singleton":false,"code_type":"ext_define","alias":null,"statics":{"property":[],"css_var":[],"css_mixin":[],"cfg":[],"method":[{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"addStatics","id":"static-method-addStatics"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"borrow","id":"static-method-borrow"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"create","id":"static-method-create"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"createAlias","id":"static-method-createAlias"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"getName","id":"static-method-getName"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"implement","id":"static-method-implement"},{"tagname":"method","deprecated":null,"static":true,"owner":"Ext.Base","template":false,"required":null,"protected":false,"name":"override","id":"static-method-override"}],"event":[]},"subclasses":["Ext.dd.DD","Ext.dd.DDTarget"],"uses":[],"protected":false,"mixins":[],"members":{"property":[{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"available","id":"property-available"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"config","id":"property-config"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"defaultPadding","id":"property-defaultPadding"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"groups","id":"property-groups"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"hasOuterHandles","id":"property-hasOuterHandles"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"id","id":"property-id"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"ignoreSelf","id":"property-ignoreSelf"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"invalidHandleClasses","id":"property-invalidHandleClasses"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"invalidHandleIds","id":"property-invalidHandleIds"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"invalidHandleTypes","id":"property-invalidHandleTypes"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"isTarget","id":"property-isTarget"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"maintainOffset","id":"property-maintainOffset"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"moveOnly","id":"property-moveOnly"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"padding","id":"property-padding"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"primaryButtonOnly","id":"property-primaryButtonOnly"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.Base","template":null,"required":null,"protected":true,"name":"self","id":"property-self"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"xTicks","id":"property-xTicks"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":null,"required":null,"protected":false,"name":"yTicks","id":"property-yTicks"}],"css_var":[],"css_mixin":[],"cfg":[],"method":[{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"constructor","id":"method-constructor"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"addInvalidHandleClass","id":"method-addInvalidHandleClass"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"addInvalidHandleId","id":"method-addInvalidHandleId"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"addInvalidHandleType","id":"method-addInvalidHandleType"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"addToGroup","id":"method-addToGroup"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"applyConfig","id":"method-applyConfig"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"callOverridden","id":"method-callOverridden"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"callParent","id":"method-callParent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"clearConstraints","id":"method-clearConstraints"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"clearTicks","id":"method-clearTicks"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"constrainTo","id":"method-constrainTo"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"endDrag","id":"method-endDrag"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"getDragEl","id":"method-getDragEl"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"getEl","id":"method-getEl"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"init","id":"method-init"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"initConfig","id":"method-initConfig"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"initTarget","id":"method-initTarget"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"isLocked","id":"method-isLocked"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"isValidHandleChild","id":"method-isValidHandleChild"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"lock","id":"method-lock"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"onAvailable","id":"method-onAvailable"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"onDrag","id":"method-onDrag"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"onDragDrop","id":"method-onDragDrop"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"onDragEnter","id":"method-onDragEnter"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"onDragOut","id":"method-onDragOut"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"onDragOver","id":"method-onDragOver"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"onInvalidDrop","id":"method-onInvalidDrop"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"onMouseDown","id":"method-onMouseDown"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"onMouseUp","id":"method-onMouseUp"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"removeFromGroup","id":"method-removeFromGroup"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"removeInvalidHandleClass","id":"method-removeInvalidHandleClass"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"removeInvalidHandleId","id":"method-removeInvalidHandleId"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"removeInvalidHandleType","id":"method-removeInvalidHandleType"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"resetConstraints","id":"method-resetConstraints"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"setDragElId","id":"method-setDragElId"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"setHandleElId","id":"method-setHandleElId"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"setInitPosition","id":"method-setInitPosition"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"setOuterHandleElId","id":"method-setOuterHandleElId"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"setPadding","id":"method-setPadding"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"setXConstraint","id":"method-setXConstraint"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"setYConstraint","id":"method-setYConstraint"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"startDrag","id":"method-startDrag"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"statics","id":"method-statics"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"toString","id":"method-toString"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"unlock","id":"method-unlock"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.dd.DragDrop","template":false,"required":null,"protected":false,"name":"unreg","id":"method-unreg"}],"event":[]},"private":false,"component":false,"name":"Ext.dd.DragDrop","alternateClassNames":[],"id":"class-Ext.dd.DragDrop","mixedInto":[],"xtypes":{},"files":[{"href":"DragDrop.html#Ext-dd-DragDrop","filename":"DragDrop.js"}]});
\ No newline at end of file