Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.dd.DropZone.js
index 4186f48..dc6f743 100644 (file)
 Ext.data.JsonP.Ext_dd_DropZone({
-  "tagname": "class",
-  "name": "Ext.dd.DropZone",
-  "doc": "<p>This class provides a container DD instance that allows dropping on multiple child target nodes.</p>\n\n<p>By default, this class requires that child nodes accepting drop are registered with <a href=\"#/api/Ext.dd.Registry\" rel=\"Ext.dd.Registry\" class=\"docClass\">Ext.dd.Registry</a>.\nHowever a simpler way to allow a DropZone to manage any number of target elements is to configure the\nDropZone with an implementation of <a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> which interrogates the passed\nmouse event to see if it has taken place within an element, or class of elements. This is easily done\nby using the event's <a href=\"#/api/Ext.EventObject-method-getTarget\" rel=\"Ext.EventObject-method-getTarget\" class=\"docClass\">getTarget</a> method to identify a node based on a\n<a href=\"#/api/Ext.DomQuery\" rel=\"Ext.DomQuery\" class=\"docClass\">Ext.DomQuery</a> selector.</p>\n\n<p>Once the DropZone has detected through calling getTargetFromEvent, that the mouse is over\na drop target, that target is passed as the first parameter to <a href=\"#/api/Ext.dd.DropZone-method-onNodeEnter\" rel=\"Ext.dd.DropZone-method-onNodeEnter\" class=\"docClass\">onNodeEnter</a>, <a href=\"#/api/Ext.dd.DropZone-method-onNodeOver\" rel=\"Ext.dd.DropZone-method-onNodeOver\" class=\"docClass\">onNodeOver</a>,\n<a href=\"#/api/Ext.dd.DropZone-method-onNodeOut\" rel=\"Ext.dd.DropZone-method-onNodeOut\" class=\"docClass\">onNodeOut</a>, <a href=\"#/api/Ext.dd.DropZone-method-onNodeDrop\" rel=\"Ext.dd.DropZone-method-onNodeDrop\" class=\"docClass\">onNodeDrop</a>. You may configure the instance of DropZone with implementations\nof these methods to provide application-specific behaviour for these events to update both\napplication state, and UI state.</p>\n\n<p>For example to make a GridPanel a cooperating target with the example illustrated in\n<a href=\"#/api/Ext.dd.DragZone\" rel=\"Ext.dd.DragZone\" class=\"docClass\">DragZone</a>, the following technique might be used:</p>\n\n<pre><code>myGridPanel.on('render', function() {\n    myGridPanel.dropZone = new Ext.dd.DropZone(myGridPanel.getView().scroller, {\n\n        // If the mouse is over a grid row, return that node. This is\n        // provided as the \"target\" parameter in all \"onNodeXXXX\" node event handling functions\n        getTargetFromEvent: function(e) {\n            return e.getTarget(myGridPanel.getView().rowSelector);\n        },\n\n        // On entry into a target node, highlight that node.\n        onNodeEnter : function(target, dd, e, data){ \n            Ext.fly(target).addCls('my-row-highlight-class');\n        },\n\n        // On exit from a target node, unhighlight that node.\n        onNodeOut : function(target, dd, e, data){ \n            Ext.fly(target).removeCls('my-row-highlight-class');\n        },\n\n        // While over a target node, return the default drop allowed class which\n        // places a \"tick\" icon into the drag proxy.\n        onNodeOver : function(target, dd, e, data){ \n            return Ext.dd.DropZone.prototype.dropAllowed;\n        },\n\n        // On node drop we can interrogate the target to find the underlying\n        // application object that is the real target of the dragged data.\n        // In this case, it is a Record in the GridPanel's Store.\n        // We can use the data set up by the DragZone's getDragData method to read\n        // any data we decided to attach in the DragZone's getDragData method.\n        onNodeDrop : function(target, dd, e, data){\n            var rowIndex = myGridPanel.getView().findRowIndex(target);\n            var r = myGridPanel.getStore().getAt(rowIndex);\n            Ext.Msg.alert('Drop gesture', 'Dropped Record id ' + data.draggedRecord.id +\n                ' on Record id ' + r.id);\n            return true;\n        }\n    });\n}\n</code></pre>\n\n<p>See the <a href=\"#/api/Ext.dd.DragZone\" rel=\"Ext.dd.DragZone\" class=\"docClass\">DragZone</a> documentation for details about building a DragZone which\ncooperates with this DropZone.</p>\n",
-  "extends": "Ext.dd.DropTarget",
-  "mixins": [
-
-  ],
-  "alternateClassNames": [
+  "allMixins": [
 
   ],
-  "xtype": null,
-  "author": null,
+  "deprecated": null,
   "docauthor": null,
-  "singleton": false,
-  "private": false,
-  "cfg": [
-    {
-      "tagname": "cfg",
-      "name": "ddGroup",
-      "member": "Ext.dd.DropTarget",
-      "type": "String",
-      "doc": "<p>A named drag drop group to which this object belongs.  If a group is specified, then this object will only\ninteract with other drag drop objects in the same group (defaults to undefined).</p>\n",
-      "private": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropTarget.js",
-      "linenr": 27,
-      "html_filename": "DropTarget.html",
-      "href": "DropTarget.html#Ext-dd-DropTarget-cfg-ddGroup",
-      "shortDoc": "A named drag drop group to which this object belongs.  If a group is specified, then this object will only\ninteract w..."
-    },
-    {
-      "tagname": "cfg",
-      "name": "dropAllowed",
-      "member": "Ext.dd.DropTarget",
-      "type": "String",
-      "doc": "<p>The CSS class returned to the drag source when drop is allowed (defaults to \"x-dd-drop-ok\").</p>\n",
-      "private": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropTarget.js",
-      "linenr": 36,
-      "html_filename": "DropTarget.html",
-      "href": "DropTarget.html#Ext-dd-DropTarget-cfg-dropAllowed"
-    },
-    {
-      "tagname": "cfg",
-      "name": "dropNotAllowed",
-      "member": "Ext.dd.DropTarget",
-      "type": "String",
-      "doc": "<p>The CSS class returned to the drag source when drop is not allowed (defaults to \"x-dd-drop-nodrop\").</p>\n",
-      "private": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropTarget.js",
-      "linenr": 41,
-      "html_filename": "DropTarget.html",
-      "href": "DropTarget.html#Ext-dd-DropTarget-cfg-dropNotAllowed"
-    },
-    {
-      "tagname": "cfg",
-      "name": "overClass",
-      "member": "Ext.dd.DropTarget",
-      "type": "String",
-      "doc": "<p>The CSS class applied to the drop target element while the drag source is over it (defaults to \"\").</p>\n",
-      "private": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropTarget.js",
-      "linenr": 32,
-      "html_filename": "DropTarget.html",
-      "href": "DropTarget.html#Ext-dd-DropTarget-cfg-overClass"
-    }
-  ],
-  "method": [
-    {
-      "tagname": "method",
-      "name": "DropZone",
-      "member": "Ext.dd.DropZone",
-      "doc": "\n",
-      "params": [
-        {
-          "type": "Mixed",
-          "name": "el",
-          "doc": "<p>The container element</p>\n",
-          "optional": false
-        },
-        {
-          "type": "Object",
-          "name": "config",
-          "doc": "\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 1,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-constructor",
-      "shortDoc": "\n"
-    },
-    {
-      "tagname": "method",
-      "name": "addInvalidHandleClass",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Lets you specify a css class of elements that will not initiate a drag</p>\n",
-      "params": [
-        {
-          "type": "string",
-          "name": "cssClass",
-          "doc": "<p>the class of the elements you wish to ignore</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 894,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleClass",
-      "shortDoc": "<p>Lets you specify a css class of elements that will not initiate a drag</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "addInvalidHandleId",
-      "member": "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",
-      "params": [
-        {
-          "type": "string",
-          "name": "id",
-          "doc": "<p>the element id of the element you wish to ignore</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 881,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleId",
-      "shortDoc": "<p>Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "addInvalidHandleType",
-      "member": "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",
-      "params": [
-        {
-          "type": "string",
-          "name": "tagName",
-          "doc": "<p>the type of element to exclude</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 869,
-      "html_filename": "DragDrop.html",
-      "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.  This is designed to facilitate..."
-    },
-    {
-      "tagname": "method",
-      "name": "addToGroup",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Add 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",
-      "params": [
-        {
+  "members": {
+    "cfg": [
+      {
+        "type": "String",
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "cfg",
+        "href": "DropTarget.html#Ext-dd-DropTarget-cfg-ddGroup",
+        "shortDoc": "A named drag drop group to which this object belongs. ...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropTarget.js",
+        "private": false,
+        "name": "ddGroup",
+        "owner": "Ext.dd.DropTarget",
+        "doc": "<p>A named drag drop group to which this object belongs.  If a group is specified, then this object will only\ninteract with other drag drop objects in the same group (defaults to undefined).</p>\n",
+        "linenr": 29,
+        "html_filename": "DropTarget.html"
+      },
+      {
+        "type": "String",
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "cfg",
+        "href": "DropTarget.html#Ext-dd-DropTarget-cfg-dropAllowed",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropTarget.js",
+        "private": false,
+        "name": "dropAllowed",
+        "owner": "Ext.dd.DropTarget",
+        "doc": "<p>The CSS class returned to the drag source when drop is allowed (defaults to \"x-dd-drop-ok\").</p>\n",
+        "linenr": 38,
+        "html_filename": "DropTarget.html"
+      },
+      {
+        "type": "String",
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "cfg",
+        "href": "DropTarget.html#Ext-dd-DropTarget-cfg-dropNotAllowed",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropTarget.js",
+        "private": false,
+        "name": "dropNotAllowed",
+        "owner": "Ext.dd.DropTarget",
+        "doc": "<p>The CSS class returned to the drag source when drop is not allowed (defaults to \"x-dd-drop-nodrop\").</p>\n",
+        "linenr": 43,
+        "html_filename": "DropTarget.html"
+      },
+      {
+        "type": "String",
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "cfg",
+        "href": "DropTarget.html#Ext-dd-DropTarget-cfg-overClass",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropTarget.js",
+        "private": false,
+        "name": "overClass",
+        "owner": "Ext.dd.DropTarget",
+        "doc": "<p>The CSS class applied to the drop target element while the drag source is over it (defaults to \"\").</p>\n",
+        "linenr": 34,
+        "html_filename": "DropTarget.html"
+      }
+    ],
+    "method": [
+      {
+        "deprecated": null,
+        "alias": null,
+        "href": "DropTarget.html#Ext-dd-DropTarget-method-constructor",
+        "tagname": "method",
+        "protected": false,
+        "shortDoc": "Creates new DropTarget. ...",
+        "static": false,
+        "params": [
+          {
+            "type": "Mixed",
+            "optional": false,
+            "doc": "<p>The container element</p>\n",
+            "name": "el"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "\n",
+            "name": "config"
+          }
+        ],
+        "private": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropTarget.js",
+        "doc": "<p>Creates new DropTarget.</p>\n",
+        "owner": "Ext.dd.DropTarget",
+        "name": "DropZone",
+        "html_filename": "DropTarget.html",
+        "return": {
           "type": "Object",
-          "name": "sGroup",
-          "doc": "<p>{string} the name of the group</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 730,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-addToGroup",
-      "shortDoc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belon..."
-    },
-    {
-      "tagname": "method",
-      "name": "applyConfig",
-      "member": "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",
-      "params": [
-
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 635,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-applyConfig",
-      "shortDoc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level ..."
-    },
-    {
-      "tagname": "method",
-      "name": "clearConstraints",
-      "member": "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",
-      "params": [
-
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 1049,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-clearConstraints",
-      "shortDoc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constrain..."
-    },
-    {
-      "tagname": "method",
-      "name": "clearTicks",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Clears any tick interval defined for this instance</p>\n",
-      "params": [
+          "doc": "\n"
+        },
+        "linenr": 11
+      },
+      {
+        "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": [
 
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 1060,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-clearTicks",
-      "shortDoc": "<p>Clears any tick interval defined for this instance</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "constrainTo",
-      "member": "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\" });\n dd.startDrag = function(){\n     this.constrainTo(\"parent-id\");\n };\n </code></pre>\n\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\n",
-      "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",
-          "name": "constrainTo",
-          "doc": "<p>The element to constrain to.</p>\n",
-          "optional": false
+          "doc": "<p>Returns the result after calling the overridden method</p>\n"
         },
-        {
-          "type": "Object/Number",
-          "name": "pad",
-          "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 {left:4, right:4, top:4, bottom:4}) or\nan object containing the sides to pad. For example: {right:10, bottom:10}</p>\n",
-          "optional": true
+        "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"
         },
-        {
-          "type": "Boolean",
-          "name": "inContent",
-          "doc": "<p>(optional) Constrain the draggable in the content box of the element (inside padding and borders)</p>\n",
-          "optional": true
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 493,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-constrainTo",
-      "shortDoc": "Initializes the drag drop object's constraints to restrict movement to a certain element.\n\nUsage:\n\n var dd = new Ext...."
-    },
-    {
-      "tagname": "method",
-      "name": "endDrag",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Fired when we are done dragging the object</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>the mouseup event</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 445,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-endDrag",
-      "shortDoc": "<p>Fired when we are done dragging the object</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "getDragEl",
-      "member": "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",
-      "params": [
+        "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": [
 
-      ],
-      "return": {
-        "type": "HTMLElement",
-        "doc": "<p>the html element</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 563,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-getDragEl",
-      "shortDoc": "Returns a reference to the actual element to drag.  By default this is\nthe same as the html element, but it can be as..."
-    },
-    {
-      "tagname": "method",
-      "name": "getEl",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Returns a reference to the linked element</p>\n",
-      "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": [
 
-      ],
-      "return": {
-        "type": "HTMLElement",
-        "doc": "<p>the html element</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 550,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-getEl",
-      "shortDoc": "<p>Returns a reference to the linked element</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "getTargetFromEvent",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>Returns a custom data object associated with the DOM node that is the target of the event.  By default\nthis looks up the event target in the <a href=\"#/api/Ext.dd.Registry\" rel=\"Ext.dd.Registry\" class=\"docClass\">Ext.dd.Registry</a>, although you can override this method to\nprovide your own custom lookup.</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "Object",
-        "doc": "<p>data The custom data</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 75,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-getTargetFromEvent",
-      "shortDoc": "Returns a custom data object associated with the DOM node that is the target of the event.  By default\nthis looks up ..."
-    },
-    {
-      "tagname": "method",
-      "name": "init",
-      "member": "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",
-      "params": [
-        {
-          "type": "Object",
-          "name": "id",
-          "doc": "<p>the id of the linked element</p>\n",
-          "optional": false
+        ],
+        "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"
         },
-        {
-          "type": "String",
-          "name": "sGroup",
-          "doc": "<p>the group of related items</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "object",
-          "name": "config",
-          "doc": "<p>configuration attributes</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 574,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-init",
-      "shortDoc": "<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"
-    },
-    {
-      "tagname": "method",
-      "name": "initTarget",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Initializes Targeting functionality only... the object does not\nget a mousedown handler.</p>\n",
-      "params": [
-        {
+        "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",
-          "name": "id",
-          "doc": "<p>the id of the linked element</p>\n",
-          "optional": false
+          "doc": "<p>the created instance.</p>\n"
         },
-        {
-          "type": "String",
-          "name": "sGroup",
-          "doc": "<p>the group of related items</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "object",
-          "name": "config",
-          "doc": "<p>configuration attributes</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 588,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-initTarget",
-      "shortDoc": "<p>Initializes Targeting functionality only... the object does not\nget a mousedown handler.</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "isLocked",
-      "member": "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",
-      "params": [
+        "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": [
 
-      ],
-      "return": {
-        "type": "boolean",
-        "doc": "<p>true if this obj or all drag/drop is locked, else\nfalse</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 814,
-      "html_filename": "DragDrop.html",
-      "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..."
-    },
-    {
-      "tagname": "method",
-      "name": "isValidHandleChild",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Checks the tag exclusion list to see if this click should be ignored</p>\n",
-      "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",
-          "name": "node",
-          "doc": "<p>the HTMLElement to evaluate</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "boolean",
-        "doc": "<p>true if this is a valid tag type, false if not</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 940,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-isValidHandleChild",
-      "shortDoc": "<p>Checks the tag exclusion list to see if this click should be ignored</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "lock",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Lock this instance</p>\n",
-      "params": [
+          "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": [
 
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 177,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-lock",
-      "shortDoc": "<p>Lock this instance</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "notifyDrop",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>The function a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> calls once to notify this drop zone that the dragged item has\nbeen dropped on it.  The drag zone will look up the target node based on the event passed in, and if there\nis a node registered for that event, it will delegate to <a href=\"#/api/Ext.dd.DropZone-method-onNodeDrop\" rel=\"Ext.dd.DropZone-method-onNodeDrop\" class=\"docClass\">onNodeDrop</a> for node-specific handling,\notherwise it will call <a href=\"#/api/Ext.dd.DropZone-method-onContainerDrop\" rel=\"Ext.dd.DropZone-method-onContainerDrop\" class=\"docClass\">onContainerDrop</a>.</p>\n",
-      "params": [
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
-          "optional": false
+        ],
+        "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"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "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": "DropZone.html#Ext-dd-DropZone-method-getTargetFromEvent",
+        "shortDoc": "Returns a custom data object associated with the DOM node that is the target of the event. ...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          }
+        ],
+        "name": "getTargetFromEvent",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>Returns a custom data object associated with the DOM node that is the target of the event.  By default\nthis looks up the event target in the <a href=\"#/api/Ext.dd.Registry\" rel=\"Ext.dd.Registry\" class=\"docClass\">Ext.dd.Registry</a>, although you can override this method to\nprovide your own custom lookup.</p>\n",
+        "linenr": 72,
+        "return": {
           "type": "Object",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "Boolean",
-        "doc": "<p>False if the drop was invalid.</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 237,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-notifyDrop",
-      "shortDoc": "The function a Ext.dd.DragSource calls once to notify this drop zone that the dragged item has\nbeen dropped on it.  T..."
-    },
-    {
-      "tagname": "method",
-      "name": "notifyEnter",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>The function a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> calls once to notify this drop zone that the source is now over\nthe zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop\nnodes can process drag drop operations, so if you need the drop zone itself to be able to process drops\nyou should override this method and provide a custom implementation.</p>\n",
-      "params": [
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
-          "optional": false
+          "doc": "<p>data The custom data</p>\n"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "html_filename": "DropZone.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",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "String",
-        "doc": "<p>status The CSS class that communicates the drop status back to the source so that the\nunderlying <a href=\"#/api/Ext.dd.StatusProxy\" rel=\"Ext.dd.StatusProxy\" class=\"docClass\">Ext.dd.StatusProxy</a> can be updated</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 175,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-notifyEnter",
-      "shortDoc": "The function a Ext.dd.DragSource calls once to notify this drop zone that the source is now over\nthe zone.  The defau..."
-    },
-    {
-      "tagname": "method",
-      "name": "notifyOut",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>The function a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> calls once to notify this drop zone that the source has been dragged\nout of the zone without dropping.  If the drag source is currently over a registered node, the notification\nwill be delegated to <a href=\"#/api/Ext.dd.DropZone-method-onNodeOut\" rel=\"Ext.dd.DropZone-method-onNodeOut\" class=\"docClass\">onNodeOut</a> for node-specific handling, otherwise it will be ignored.</p>\n",
-      "params": [
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop target</p>\n",
-          "optional": false
+          "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Object",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag zone</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 222,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-notifyOut",
-      "shortDoc": "The function a Ext.dd.DragSource calls once to notify this drop zone that the source has been dragged\nout of the zone..."
-    },
-    {
-      "tagname": "method",
-      "name": "notifyOver",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>The function a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> calls continuously while it is being dragged over the drop zone.\nThis method will be called on every mouse movement while the drag source is over the drop zone.\nIt will call <a href=\"#/api/Ext.dd.DropZone-method-onNodeOver\" rel=\"Ext.dd.DropZone-method-onNodeOver\" class=\"docClass\">onNodeOver</a> while the drag source is over a registered node, and will also automatically\ndelegate to the appropriate node-specific methods as necessary when the drag source enters and exits\nregistered nodes (<a href=\"#/api/Ext.dd.DropZone-method-onNodeEnter\" rel=\"Ext.dd.DropZone-method-onNodeEnter\" class=\"docClass\">onNodeEnter</a>, <a href=\"#/api/Ext.dd.DropZone-method-onNodeOut\" rel=\"Ext.dd.DropZone-method-onNodeOut\" class=\"docClass\">onNodeOut</a>). If the drag source is not currently over a\nregistered node, it will call <a href=\"#/api/Ext.dd.DropZone-method-onContainerOver\" rel=\"Ext.dd.DropZone-method-onContainerOver\" class=\"docClass\">onContainerOver</a>.</p>\n",
-      "params": [
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Object",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "String",
-        "doc": "<p>status The CSS class that communicates the drop status back to the source so that the\nunderlying <a href=\"#/api/Ext.dd.StatusProxy\" rel=\"Ext.dd.StatusProxy\" class=\"docClass\">Ext.dd.StatusProxy</a> can be updated</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 190,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-notifyOver",
-      "shortDoc": "The function a Ext.dd.DragSource calls continuously while it is being dragged over the drop zone.\nThis method will be..."
-    },
-    {
-      "tagname": "method",
-      "name": "onAvailable",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Override the onAvailable method to do what is needed after the initial\nposition was determined.</p>\n",
-      "params": [
+        "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": [
 
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 474,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-onAvailable",
-      "shortDoc": "<p>Override the onAvailable method to do what is needed after the initial\nposition was determined.</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "onContainerDrop",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>Called when the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> has been dropped on it,\nbut not on any of its registered drop nodes.  The default implementation returns false, so it should be\noverridden to provide the appropriate processing of the drop event if you need the drop zone itself to\nbe able to accept drops.  It should return true when valid so that the drag source's repair action does not run.</p>\n",
-      "params": [
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
-          "optional": false
+        ],
+        "name": "lock",
+        "owner": "Ext.dd.DragDrop",
+        "doc": "<p>Locks this instance</p>\n",
+        "linenr": 183,
+        "return": {
+          "type": "void",
+          "doc": "\n"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "html_filename": "DragDrop.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-notifyDrop",
+        "shortDoc": "The function a Ext.dd.DragSource calls once to notify this drop zone that the dragged item has\nbeen dropped on it. ...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "notifyDrop",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>The function a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> calls once to notify this drop zone that the dragged item has\nbeen dropped on it.  The drag zone will look up the target node based on the event passed in, and if there\nis a node registered for that event, it will delegate to <a href=\"#/api/Ext.dd.DropZone-method-onNodeDrop\" rel=\"Ext.dd.DropZone-method-onNodeDrop\" class=\"docClass\">onNodeDrop</a> for node-specific handling,\notherwise it will call <a href=\"#/api/Ext.dd.DropZone-method-onContainerDrop\" rel=\"Ext.dd.DropZone-method-onContainerDrop\" class=\"docClass\">onContainerDrop</a>.</p>\n",
+        "linenr": 234,
+        "return": {
+          "type": "Boolean",
+          "doc": "<p>False if the drop was invalid.</p>\n"
         },
-        {
-          "type": "Object",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "Boolean",
-        "doc": "<p>True if the drop was valid, else false</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 161,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-onContainerDrop",
-      "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has been dropped on it,\nbut not on any of its registered..."
-    },
-    {
-      "tagname": "method",
-      "name": "onContainerOver",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>Called while the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> is being dragged over it,\nbut not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so\nit should be overridden to provide the proper feedback if necessary.</p>\n",
-      "params": [
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
-          "optional": false
+        "html_filename": "DropZone.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-notifyEnter",
+        "shortDoc": "The function a Ext.dd.DragSource calls once to notify this drop zone that the source is now over\nthe zone. ...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "notifyEnter",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>The function a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> calls once to notify this drop zone that the source is now over\nthe zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop\nnodes can process drag drop operations, so if you need the drop zone itself to be able to process drops\nyou should override this method and provide a custom implementation.</p>\n",
+        "linenr": 172,
+        "return": {
+          "type": "String",
+          "doc": "<p>status The CSS class that communicates the drop status back to the source so that the\nunderlying <a href=\"#/api/Ext.dd.StatusProxy\" rel=\"Ext.dd.StatusProxy\" class=\"docClass\">Ext.dd.StatusProxy</a> can be updated</p>\n"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "html_filename": "DropZone.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-notifyOut",
+        "shortDoc": "The function a Ext.dd.DragSource calls once to notify this drop zone that the source has been dragged\nout of the zone...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop target</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag zone</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "notifyOut",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>The function a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> calls once to notify this drop zone that the source has been dragged\nout of the zone without dropping.  If the drag source is currently over a registered node, the notification\nwill be delegated to <a href=\"#/api/Ext.dd.DropZone-method-onNodeOut\" rel=\"Ext.dd.DropZone-method-onNodeOut\" class=\"docClass\">onNodeOut</a> for node-specific handling, otherwise it will be ignored.</p>\n",
+        "linenr": 219,
+        "return": {
+          "type": "void",
+          "doc": "\n"
         },
-        {
-          "type": "Object",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "String",
-        "doc": "<p>status The CSS class that communicates the drop status back to the source so that the\nunderlying <a href=\"#/api/Ext.dd.StatusProxy\" rel=\"Ext.dd.StatusProxy\" class=\"docClass\">Ext.dd.StatusProxy</a> can be updated</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 147,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-onContainerOver",
-      "shortDoc": "Called while the DropZone determines that a Ext.dd.DragSource is being dragged over it,\nbut not over any of its regis..."
-    },
-    {
-      "tagname": "method",
-      "name": "onDrag",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Abstract method called during the onMouseMove event while dragging an\nobject.</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>the mousemove event</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 358,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-onDrag",
-      "shortDoc": "<p>Abstract method called during the onMouseMove event while dragging an\nobject.</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "onDragDrop",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Abstract method called when this item is dropped on another DragDrop\nobj</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>the mouseup event</p>\n",
-          "optional": false
+        "html_filename": "DropZone.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-notifyOver",
+        "shortDoc": "The function a Ext.dd.DragSource calls continuously while it is being dragged over the drop zone. ...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "notifyOver",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>The function a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> calls continuously while it is being dragged over the drop zone.\nThis method will be called on every mouse movement while the drag source is over the drop zone.\nIt will call <a href=\"#/api/Ext.dd.DropZone-method-onNodeOver\" rel=\"Ext.dd.DropZone-method-onNodeOver\" class=\"docClass\">onNodeOver</a> while the drag source is over a registered node, and will also automatically\ndelegate to the appropriate node-specific methods as necessary when the drag source enters and exits\nregistered nodes (<a href=\"#/api/Ext.dd.DropZone-method-onNodeEnter\" rel=\"Ext.dd.DropZone-method-onNodeEnter\" class=\"docClass\">onNodeEnter</a>, <a href=\"#/api/Ext.dd.DropZone-method-onNodeOut\" rel=\"Ext.dd.DropZone-method-onNodeOut\" class=\"docClass\">onNodeOut</a>). If the drag source is not currently over a\nregistered node, it will call <a href=\"#/api/Ext.dd.DropZone-method-onContainerOver\" rel=\"Ext.dd.DropZone-method-onContainerOver\" class=\"docClass\">onContainerOver</a>.</p>\n",
+        "linenr": 187,
+        "return": {
+          "type": "String",
+          "doc": "<p>status The CSS class that communicates the drop status back to the source so that the\nunderlying <a href=\"#/api/Ext.dd.StatusProxy\" rel=\"Ext.dd.StatusProxy\" class=\"docClass\">Ext.dd.StatusProxy</a> can be updated</p>\n"
         },
-        {
-          "type": "String|DragDrop[]",
-          "name": "id",
-          "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",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 419,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragDrop",
-      "shortDoc": "<p>Abstract method called when this item is dropped on another DragDrop\nobj</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "onDragEnter",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Abstract method called when this element fist begins hovering over\nanother DragDrop obj</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>the mousemove event</p>\n",
-          "optional": false
+        "html_filename": "DropZone.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"
         },
-        {
-          "type": "String|DragDrop[]",
-          "name": "id",
-          "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",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 366,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragEnter",
-      "shortDoc": "<p>Abstract method called when this element fist begins hovering over\nanother DragDrop obj</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "onDragOut",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Abstract method called when we are no longer hovering over an element</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>the mousemove event</p>\n",
-          "optional": false
+        "html_filename": "DragDrop.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-onContainerDrop",
+        "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has been dropped on it,\nbut not on any of its registered...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "onContainerDrop",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>Called when the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> has been dropped on it,\nbut not on any of its registered drop nodes.  The default implementation returns false, so it should be\noverridden to provide the appropriate processing of the drop event if you need the drop zone itself to\nbe able to accept drops.  It should return true when valid so that the drag source's repair action does not run.</p>\n",
+        "linenr": 158,
+        "return": {
+          "type": "Boolean",
+          "doc": "<p>True if the drop was valid, else false</p>\n"
         },
-        {
-          "type": "String|DragDrop[]",
-          "name": "id",
-          "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",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 402,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragOut",
-      "shortDoc": "<p>Abstract method called when we are no longer hovering over an element</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "onDragOver",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Abstract method called when this element is hovering over another\nDragDrop obj</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>the mousemove event</p>\n",
-          "optional": false
+        "html_filename": "DropZone.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-onContainerOver",
+        "shortDoc": "Called while the DropZone determines that a Ext.dd.DragSource is being dragged over it,\nbut not over any of its regis...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "onContainerOver",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>Called while the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> is being dragged over it,\nbut not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so\nit should be overridden to provide the proper feedback if necessary.</p>\n",
+        "linenr": 144,
+        "return": {
+          "type": "String",
+          "doc": "<p>status The CSS class that communicates the drop status back to the source so that the\nunderlying <a href=\"#/api/Ext.dd.StatusProxy\" rel=\"Ext.dd.StatusProxy\" class=\"docClass\">Ext.dd.StatusProxy</a> can be updated</p>\n"
         },
-        {
-          "type": "String|DragDrop[]",
-          "name": "id",
-          "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",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 384,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragOver",
-      "shortDoc": "<p>Abstract method called when this element is hovering over another\nDragDrop obj</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "onInvalidDrop",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Abstract method called when this item is dropped on an area with no\ndrop target</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>the mouseup event</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 430,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-onInvalidDrop",
-      "shortDoc": "<p>Abstract method called when this item is dropped on an area with no\ndrop target</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "onMouseDown",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Event handler that fires when a drag/drop obj gets a mousedown</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>the mousedown event</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 460,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-onMouseDown",
-      "shortDoc": "<p>Event handler that fires when a drag/drop obj gets a mousedown</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "onMouseUp",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Event handler that fires when a drag/drop obj gets a mouseup</p>\n",
-      "params": [
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>the mouseup event</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 467,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-onMouseUp",
-      "shortDoc": "<p>Event handler that fires when a drag/drop obj gets a mouseup</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "onNodeDrop",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>Called when the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> has been dropped onto\nthe drop node.  The default implementation returns false, so it should be overridden to provide the\nappropriate processing of the drop event and return true so that the drag source's repair action does not run.</p>\n",
-      "params": [
-        {
-          "type": "Object",
-          "name": "nodeData",
-          "doc": "<p>The custom data associated with the drop node (this is the same value returned from\n<a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> for this node)</p>\n",
-          "optional": false
+        "html_filename": "DropZone.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"
         },
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Object",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "Boolean",
-        "doc": "<p>True if the drop was valid, else false</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 132,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-onNodeDrop",
-      "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has been dropped onto\nthe drop node.  The default implem..."
-    },
-    {
-      "tagname": "method",
-      "name": "onNodeEnter",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>Called when the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> has entered a drop node\nthat has either been registered or detected by a configured implementation of <a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a>.\nThis method has no default implementation and should be overridden to provide\nnode-specific processing if necessary.</p>\n",
-      "params": [
-        {
-          "type": "Object",
-          "name": "nodeData",
-          "doc": "<p>The custom data associated with the drop node (this is the same value returned from\n<a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> for this node)</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Object",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 86,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-onNodeEnter",
-      "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has entered a drop node\nthat has either been registered ..."
-    },
-    {
-      "tagname": "method",
-      "name": "onNodeOut",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>Called when the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> has been dragged out of\nthe drop node without dropping.  This method has no default implementation and should be overridden to provide\nnode-specific processing if necessary.</p>\n",
-      "params": [
-        {
-          "type": "Object",
-          "name": "nodeData",
-          "doc": "<p>The custom data associated with the drop node (this is the same value returned from\n<a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> for this node)</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "html_filename": "DragDrop.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-onNodeDrop",
+        "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has been dropped onto\nthe drop node. ...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>The custom data associated with the drop node (this is the same value returned from\n<a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> for this node)</p>\n",
+            "name": "nodeData"
+          },
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "onNodeDrop",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>Called when the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> has been dropped onto\nthe drop node.  The default implementation returns false, so it should be overridden to provide the\nappropriate processing of the drop event and return true so that the drag source's repair action does not run.</p>\n",
+        "linenr": 129,
+        "return": {
+          "type": "Boolean",
+          "doc": "<p>True if the drop was valid, else false</p>\n"
         },
-        {
-          "type": "Object",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 118,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-onNodeOut",
-      "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has been dragged out of\nthe drop node without dropping. ..."
-    },
-    {
-      "tagname": "method",
-      "name": "onNodeOver",
-      "member": "Ext.dd.DropZone",
-      "doc": "<p>Called while the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> is over a drop node\nthat has either been registered or detected by a configured implementation of <a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a>.\nThe default implementation returns this.dropNotAllowed, so it should be\noverridden to provide the proper feedback.</p>\n",
-      "params": [
-        {
-          "type": "Object",
-          "name": "nodeData",
-          "doc": "<p>The custom data associated with the drop node (this is the same value returned from\n<a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> for this node)</p>\n",
-          "optional": false
+        "html_filename": "DropZone.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-onNodeEnter",
+        "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has entered a drop node\nthat has either been registered ...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>The custom data associated with the drop node (this is the same value returned from\n<a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> for this node)</p>\n",
+            "name": "nodeData"
+          },
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "onNodeEnter",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>Called when the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> has entered a drop node\nthat has either been registered or detected by a configured implementation of <a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a>.\nThis method has no default implementation and should be overridden to provide\nnode-specific processing if necessary.</p>\n",
+        "linenr": 83,
+        "return": {
+          "type": "void",
+          "doc": "\n"
         },
-        {
-          "type": "Ext.dd.DragSource",
-          "name": "source",
-          "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
-          "optional": false
+        "html_filename": "DropZone.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-onNodeOut",
+        "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has been dragged out of\nthe drop node without dropping. ...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>The custom data associated with the drop node (this is the same value returned from\n<a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> for this node)</p>\n",
+            "name": "nodeData"
+          },
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "onNodeOut",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>Called when the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> has been dragged out of\nthe drop node without dropping.  This method has no default implementation and should be overridden to provide\nnode-specific processing if necessary.</p>\n",
+        "linenr": 115,
+        "return": {
+          "type": "void",
+          "doc": "\n"
         },
-        {
-          "type": "Event",
-          "name": "e",
-          "doc": "<p>The event</p>\n",
-          "optional": false
+        "html_filename": "DropZone.html"
+      },
+      {
+        "deprecated": null,
+        "alias": null,
+        "protected": false,
+        "tagname": "method",
+        "href": "DropZone.html#Ext-dd-DropZone-method-onNodeOver",
+        "shortDoc": "Called while the DropZone determines that a Ext.dd.DragSource is over a drop node\nthat has either been registered or ...",
+        "static": false,
+        "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+        "private": false,
+        "params": [
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>The custom data associated with the drop node (this is the same value returned from\n<a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> for this node)</p>\n",
+            "name": "nodeData"
+          },
+          {
+            "type": "Ext.dd.DragSource",
+            "optional": false,
+            "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
+            "name": "source"
+          },
+          {
+            "type": "Event",
+            "optional": false,
+            "doc": "<p>The event</p>\n",
+            "name": "e"
+          },
+          {
+            "type": "Object",
+            "optional": false,
+            "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
+            "name": "data"
+          }
+        ],
+        "name": "onNodeOver",
+        "owner": "Ext.dd.DropZone",
+        "doc": "<p>Called while the DropZone determines that a <a href=\"#/api/Ext.dd.DragSource\" rel=\"Ext.dd.DragSource\" class=\"docClass\">Ext.dd.DragSource</a> is over a drop node\nthat has either been registered or detected by a configured implementation of <a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a>.\nThe default implementation returns this.dropNotAllowed, so it should be\noverridden to provide the proper feedback.</p>\n",
+        "linenr": 98,
+        "return": {
+          "type": "String",
+          "doc": "<p>status The CSS class that communicates the drop status back to the source so that the\nunderlying <a href=\"#/api/Ext.dd.StatusProxy\" rel=\"Ext.dd.StatusProxy\" class=\"docClass\">Ext.dd.StatusProxy</a> can be updated</p>\n"
         },
-        {
-          "type": "Object",
-          "name": "data",
-          "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "String",
-        "doc": "<p>status The CSS class that communicates the drop status back to the source so that the\nunderlying <a href=\"#/api/Ext.dd.StatusProxy\" rel=\"Ext.dd.StatusProxy\" class=\"docClass\">Ext.dd.StatusProxy</a> can be updated</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-      "linenr": 101,
-      "html_filename": "DropZone.html",
-      "href": "DropZone.html#Ext-dd-DropZone-method-onNodeOver",
-      "shortDoc": "Called while the DropZone determines that a Ext.dd.DragSource is over a drop node\nthat has either been registered or ..."
-    },
-    {
-      "tagname": "method",
-      "name": "removeFromGroup",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Remove's this instance from the supplied interaction group</p>\n",
-      "params": [
-        {
-          "type": "string",
-          "name": "sGroup",
-          "doc": "<p>The group to drop</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 742,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-removeFromGroup",
-      "shortDoc": "<p>Remove's this instance from the supplied interaction group</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "removeInvalidHandleClass",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Unsets an invalid css class</p>\n",
-      "params": [
-        {
-          "type": "string",
-          "name": "cssClass",
-          "doc": "<p>the class of the element(s) you wish to\nre-enable</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 926,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleClass",
-      "shortDoc": "<p>Unsets an invalid css class</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "removeInvalidHandleId",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Unsets an invalid handle id</p>\n",
-      "params": [
-        {
-          "type": "string",
-          "name": "id",
-          "doc": "<p>the id of the element to re-enable</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 914,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleId",
-      "shortDoc": "<p>Unsets an invalid handle id</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "removeInvalidHandleType",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Unsets an excluded tag name set by addInvalidHandleType</p>\n",
-      "params": [
-        {
-          "type": "string",
-          "name": "tagName",
-          "doc": "<p>the type of element to unexclude</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 903,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleType",
-      "shortDoc": "<p>Unsets an excluded tag name set by addInvalidHandleType</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "resetConstraints",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>resetConstraints must be called if you manually reposition a dd element.</p>\n",
-      "params": [
-        {
-          "type": "boolean",
-          "name": "maintainOffset",
-          "doc": "\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 1093,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-resetConstraints",
-      "shortDoc": "<p>resetConstraints must be called if you manually reposition a dd element.</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "setDragElId",
-      "member": "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",
-      "params": [
-        {
-          "type": "Object",
-          "name": "id",
-          "doc": "<p>{string} the id of the element that will be used to initiate the drag</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 755,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-setDragElId",
-      "shortDoc": "<p>Allows you to specify that an element other than the linked element\nwill be moved with the cursor during a drag</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "setHandleElId",
-      "member": "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",
-      "params": [
-        {
-          "type": "Object",
-          "name": "id",
-          "doc": "<p>{string} the id of the element that will be used to\ninitiate the drag.</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 765,
-      "html_filename": "DragDrop.html",
-      "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.  An example o..."
-    },
-    {
-      "tagname": "method",
-      "name": "setInitPosition",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Stores the initial placement of the linked element.</p>\n",
-      "params": [
-        {
-          "type": "int",
-          "name": "diffX",
-          "doc": "<p>the X offset, default 0</p>\n",
-          "optional": false
+        "html_filename": "DropZone.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"
         },
-        {
-          "type": "int",
-          "name": "diffY",
-          "doc": "<p>the Y offset, default 0</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 688,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-setInitPosition",
-      "shortDoc": "<p>Stores the initial placement of the linked element.</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "setOuterHandleElId",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Allows you to set an element outside of the linked element as a drag\nhandle</p>\n",
-      "params": [
-        {
-          "type": "Object",
-          "name": "id",
-          "doc": "<p>the id of the element that will be used to initiate the drag</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 784,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-setOuterHandleElId",
-      "shortDoc": "<p>Allows you to set an element outside of the linked element as a drag\nhandle</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "setPadding",
-      "member": "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",
-      "params": [
-        {
-          "type": "int",
-          "name": "iTop",
-          "doc": "<p>Top pad</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "int",
-          "name": "iRight",
-          "doc": "<p>Right pad</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "int",
-          "name": "iBot",
-          "doc": "<p>Bot pad</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "int",
-          "name": "iLeft",
-          "doc": "<p>Left pad</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 665,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-setPadding",
-      "shortDoc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targe..."
-    },
-    {
-      "tagname": "method",
-      "name": "setXConstraint",
-      "member": "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",
-      "params": [
-        {
-          "type": "int",
-          "name": "iLeft",
-          "doc": "<p>the number of pixels the element can move to the left</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "int",
-          "name": "iRight",
-          "doc": "<p>the number of pixels the element can move to the\nright</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "int",
-          "name": "iTickSize",
-          "doc": "<p>optional parameter for specifying that the\nelement\nshould move iTickSize pixels at a time.</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 1026,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-setXConstraint",
-      "shortDoc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of th..."
-    },
-    {
-      "tagname": "method",
-      "name": "setYConstraint",
-      "member": "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",
-      "params": [
-        {
-          "type": "int",
-          "name": "iUp",
-          "doc": "<p>the number of pixels the element can move up</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "int",
-          "name": "iDown",
-          "doc": "<p>the number of pixels the element can move down</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "int",
-          "name": "iTickSize",
-          "doc": "<p>optional parameter for specifying that the\nelement should move iTickSize pixels at a time.</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 1071,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-setYConstraint",
-      "shortDoc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element..."
-    },
-    {
-      "tagname": "method",
-      "name": "startDrag",
-      "member": "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",
-      "params": [
-        {
-          "type": "int",
-          "name": "X",
-          "doc": "<p>click location</p>\n",
-          "optional": false
+        "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"
         },
-        {
-          "type": "int",
-          "name": "Y",
-          "doc": "<p>click location</p>\n",
-          "optional": false
-        }
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 342,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-startDrag",
-      "shortDoc": "<p>Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met.</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "toString",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>toString method</p>\n",
-      "params": [
+        "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": [
 
-      ],
-      "return": {
-        "type": "string",
-        "doc": "<p>string representation of the dd obj</p>\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 1160,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-toString",
-      "shortDoc": "<p>toString method</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "unlock",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Unlock this instace</p>\n",
-      "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": [
 
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 193,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-unlock",
-      "shortDoc": "<p>Unlock this instace</p>\n"
-    },
-    {
-      "tagname": "method",
-      "name": "unreg",
-      "member": "Ext.dd.DragDrop",
-      "doc": "<p>Remove all drag and drop hooks for this element</p>\n",
-      "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": [
 
-      ],
-      "return": {
-        "type": "void",
-        "doc": "\n"
-      },
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 800,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-method-unreg",
-      "shortDoc": "<p>Remove all drag and drop hooks for this element</p>\n"
-    }
-  ],
-  "property": [
-    {
-      "tagname": "property",
-      "name": "available",
-      "member": "Ext.dd.DragDrop",
-      "type": "boolean",
-      "doc": "<p>The available property is false until the linked dom element is accessible.</p>\n",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 315,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-property-available"
-    },
-    {
-      "tagname": "property",
-      "name": "config",
-      "member": "Ext.dd.DragDrop",
-      "type": "object",
-      "doc": "<p>Configuration attributes passed into the constructor</p>\n",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 81,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-property-config"
-    },
-    {
-      "tagname": "property",
-      "name": "defaultPadding",
-      "member": "Ext.dd.DragDrop",
-      "type": "Object",
-      "doc": "<p>Provides default constraint padding to \"constrainTo\" elements (defaults to {left: 0, right:0, top:0, bottom:0}).</p>\n",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 482,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-property-defaultPadding"
-    },
-    {
-      "tagname": "property",
-      "name": "groups",
-      "member": "Ext.dd.DragDrop",
-      "type": "object",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 158,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-property-groups",
-      "shortDoc": "The group defines a logical collection of DragDrop objects that are\nrelated.  Instances only get events when interact..."
-    },
-    {
-      "tagname": "property",
-      "name": "hasOuterHandles",
-      "member": "Ext.dd.DragDrop",
-      "type": "boolean",
-      "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. @default false</p>\n",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 322,
-      "html_filename": "DragDrop.html",
-      "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.  This is done in..."
-    },
-    {
-      "tagname": "property",
-      "name": "id",
-      "member": "Ext.dd.DragDrop",
-      "type": "String",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 71,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-property-id",
-      "shortDoc": "The id of the element associated with this object.  This is what we\nrefer to as the \"linked element\" because the size..."
-    },
-    {
-      "tagname": "property",
-      "name": "ignoreSelf",
-      "member": "Ext.dd.DragDrop",
-      "type": "Boolean",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 63,
-      "html_filename": "DragDrop.html",
-      "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. Defaults to true - ..."
-    },
-    {
-      "tagname": "property",
-      "name": "invalidHandleClasses",
-      "member": "Ext.dd.DragDrop",
-      "type": "Array",
-      "doc": "<p>An Array of CSS class names for elements to be considered in valid as drag handles.</p>\n",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 133,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleClasses"
-    },
-    {
-      "tagname": "property",
-      "name": "invalidHandleIds",
-      "member": "Ext.dd.DragDrop",
-      "type": "Object",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 121,
-      "html_filename": "DragDrop.html",
-      "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.\nA non-null prop..."
-    },
-    {
-      "tagname": "property",
-      "name": "invalidHandleTypes",
-      "member": "Ext.dd.DragDrop",
-      "type": "Object",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 109,
-      "html_filename": "DragDrop.html",
-      "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.\nA non-null property value..."
-    },
-    {
-      "tagname": "property",
-      "name": "isTarget",
-      "member": "Ext.dd.DragDrop",
-      "type": "boolean",
-      "doc": "<p>By default, all instances can be a drop target.  This can be disabled by\nsetting isTarget to false.</p>\n",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 201,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-property-isTarget"
-    },
-    {
-      "tagname": "property",
-      "name": "maintainOffset",
-      "member": "Ext.dd.DragDrop",
-      "type": "boolean",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 279,
-      "html_filename": "DragDrop.html",
-      "href": "DragDrop.html#Ext-dd-DragDrop-property-maintainOffset",
-      "shortDoc": "Maintain offsets when we resetconstraints.  Set to true when you want\nthe position of the element relative to its par..."
-    },
-    {
-      "tagname": "property",
-      "name": "moveOnly",
-      "member": "Ext.dd.DragDrop",
-      "type": "boolean",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 185,
-      "html_filename": "DragDrop.html",
-      "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 ..."
-    },
-    {
-      "tagname": "property",
-      "name": "padding",
-      "member": "Ext.dd.DragDrop",
-      "type": "[int]",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 209,
-      "html_filename": "DragDrop.html",
-      "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.\nAn ..."
-    },
-    {
-      "tagname": "property",
-      "name": "primaryButtonOnly",
-      "member": "Ext.dd.DragDrop",
-      "type": "boolean",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 305,
-      "html_filename": "DragDrop.html",
-      "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..."
-    },
-    {
-      "tagname": "property",
-      "name": "xTicks",
-      "member": "Ext.dd.DragDrop",
-      "type": "[int]",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 289,
-      "html_filename": "DragDrop.html",
-      "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.  This array is ge..."
-    },
-    {
-      "tagname": "property",
-      "name": "yTicks",
-      "member": "Ext.dd.DragDrop",
-      "type": "[int]",
-      "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",
-      "private": false,
-      "static": false,
-      "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
-      "linenr": 297,
-      "html_filename": "DragDrop.html",
-      "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.  This array is gene..."
-    }
-  ],
-  "event": [
+        ],
+        "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": [
 
-  ],
-  "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
-  "linenr": 1,
-  "html_filename": "DropZone.html",
-  "href": "DropZone.html#Ext-dd-DropZone",
-  "cssVar": [
+        ],
+        "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": [
+    ],
+    "cssMixin": [
 
-  ],
-  "component": false,
+    ],
+    "event": [
+
+    ]
+  },
+  "singleton": false,
+  "alias": null,
   "superclasses": [
+    "Ext.Base",
     "Ext.dd.DragDrop",
     "Ext.dd.DDTarget",
     "Ext.dd.DropTarget"
   ],
+  "protected": false,
+  "tagname": "class",
+  "mixins": [
+
+  ],
+  "href": "DropZone.html#Ext-dd-DropZone",
   "subclasses": [
-    "Ext.grid.header.DropZone",
-    "Ext.view.DropZone"
+
+  ],
+  "static": false,
+  "author": null,
+  "component": false,
+  "filename": "/mnt/ebs/nightly/git/SDK/extjs/src/dd/DropZone.js",
+  "private": false,
+  "alternateClassNames": [
+
   ],
+  "name": "Ext.dd.DropZone",
+  "doc": "<p>This class provides a container DD instance that allows dropping on multiple child target nodes.</p>\n\n<p>By default, this class requires that child nodes accepting drop are registered with <a href=\"#/api/Ext.dd.Registry\" rel=\"Ext.dd.Registry\" class=\"docClass\">Ext.dd.Registry</a>.\nHowever a simpler way to allow a DropZone to manage any number of target elements is to configure the\nDropZone with an implementation of <a href=\"#/api/Ext.dd.DropZone-method-getTargetFromEvent\" rel=\"Ext.dd.DropZone-method-getTargetFromEvent\" class=\"docClass\">getTargetFromEvent</a> which interrogates the passed\nmouse event to see if it has taken place within an element, or class of elements. This is easily done\nby using the event's <a href=\"#/api/Ext.EventObject-method-getTarget\" rel=\"Ext.EventObject-method-getTarget\" class=\"docClass\">getTarget</a> method to identify a node based on a\n<a href=\"#/api/Ext.DomQuery\" rel=\"Ext.DomQuery\" class=\"docClass\">Ext.DomQuery</a> selector.</p>\n\n<p>Once the DropZone has detected through calling getTargetFromEvent, that the mouse is over\na drop target, that target is passed as the first parameter to <a href=\"#/api/Ext.dd.DropZone-method-onNodeEnter\" rel=\"Ext.dd.DropZone-method-onNodeEnter\" class=\"docClass\">onNodeEnter</a>, <a href=\"#/api/Ext.dd.DropZone-method-onNodeOver\" rel=\"Ext.dd.DropZone-method-onNodeOver\" class=\"docClass\">onNodeOver</a>,\n<a href=\"#/api/Ext.dd.DropZone-method-onNodeOut\" rel=\"Ext.dd.DropZone-method-onNodeOut\" class=\"docClass\">onNodeOut</a>, <a href=\"#/api/Ext.dd.DropZone-method-onNodeDrop\" rel=\"Ext.dd.DropZone-method-onNodeDrop\" class=\"docClass\">onNodeDrop</a>. You may configure the instance of DropZone with implementations\nof these methods to provide application-specific behaviour for these events to update both\napplication state, and UI state.</p>\n\n<p>For example to make a GridPanel a cooperating target with the example illustrated in\n<a href=\"#/api/Ext.dd.DragZone\" rel=\"Ext.dd.DragZone\" class=\"docClass\">DragZone</a>, the following technique might be used:</p>\n\n<pre><code>myGridPanel.on('render', function() {\n    myGridPanel.dropZone = new Ext.dd.DropZone(myGridPanel.getView().scroller, {\n\n        // If the mouse is over a grid row, return that node. This is\n        // provided as the \"target\" parameter in all \"onNodeXXXX\" node event handling functions\n        getTargetFromEvent: function(e) {\n            return e.getTarget(myGridPanel.getView().rowSelector);\n        },\n\n        // On entry into a target node, highlight that node.\n        onNodeEnter : function(target, dd, e, data){ \n            Ext.fly(target).addCls('my-row-highlight-class');\n        },\n\n        // On exit from a target node, unhighlight that node.\n        onNodeOut : function(target, dd, e, data){ \n            Ext.fly(target).removeCls('my-row-highlight-class');\n        },\n\n        // While over a target node, return the default drop allowed class which\n        // places a \"tick\" icon into the drag proxy.\n        onNodeOver : function(target, dd, e, data){ \n            return Ext.dd.DropZone.prototype.dropAllowed;\n        },\n\n        // On node drop we can interrogate the target to find the underlying\n        // application object that is the real target of the dragged data.\n        // In this case, it is a Record in the GridPanel's Store.\n        // We can use the data set up by the DragZone's getDragData method to read\n        // any data we decided to attach in the DragZone's getDragData method.\n        onNodeDrop : function(target, dd, e, data){\n            var rowIndex = myGridPanel.getView().findRowIndex(target);\n            var r = myGridPanel.getStore().getAt(rowIndex);\n            Ext.Msg.alert('Drop gesture', 'Dropped Record id ' + data.draggedRecord.id +\n                ' on Record id ' + r.id);\n            return true;\n        }\n    });\n}\n</code></pre>\n\n<p>See the <a href=\"#/api/Ext.dd.DragZone\" rel=\"Ext.dd.DragZone\" class=\"docClass\">DragZone</a> documentation for details about building a DragZone which\ncooperates with this DropZone.</p>\n",
   "mixedInto": [
 
   ],
-  "allMixins": [
+  "linenr": 1,
+  "xtypes": [
 
-  ]
+  ],
+  "html_filename": "DropZone.html",
+  "extends": "Ext.dd.DropTarget"
 });
\ No newline at end of file