Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.dd.DropZone.js
1 Ext.data.JsonP.Ext_dd_DropZone({
2   "tagname": "class",
3   "name": "Ext.dd.DropZone",
4   "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",
5   "extends": "Ext.dd.DropTarget",
6   "mixins": [
7
8   ],
9   "alternateClassNames": [
10
11   ],
12   "xtype": null,
13   "author": null,
14   "docauthor": null,
15   "singleton": false,
16   "private": false,
17   "cfg": [
18     {
19       "tagname": "cfg",
20       "name": "ddGroup",
21       "member": "Ext.dd.DropTarget",
22       "type": "String",
23       "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",
24       "private": false,
25       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropTarget.js",
26       "linenr": 27,
27       "html_filename": "DropTarget.html",
28       "href": "DropTarget.html#Ext-dd-DropTarget-cfg-ddGroup",
29       "shortDoc": "A named drag drop group to which this object belongs.  If a group is specified, then this object will only\ninteract w..."
30     },
31     {
32       "tagname": "cfg",
33       "name": "dropAllowed",
34       "member": "Ext.dd.DropTarget",
35       "type": "String",
36       "doc": "<p>The CSS class returned to the drag source when drop is allowed (defaults to \"x-dd-drop-ok\").</p>\n",
37       "private": false,
38       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropTarget.js",
39       "linenr": 36,
40       "html_filename": "DropTarget.html",
41       "href": "DropTarget.html#Ext-dd-DropTarget-cfg-dropAllowed"
42     },
43     {
44       "tagname": "cfg",
45       "name": "dropNotAllowed",
46       "member": "Ext.dd.DropTarget",
47       "type": "String",
48       "doc": "<p>The CSS class returned to the drag source when drop is not allowed (defaults to \"x-dd-drop-nodrop\").</p>\n",
49       "private": false,
50       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropTarget.js",
51       "linenr": 41,
52       "html_filename": "DropTarget.html",
53       "href": "DropTarget.html#Ext-dd-DropTarget-cfg-dropNotAllowed"
54     },
55     {
56       "tagname": "cfg",
57       "name": "overClass",
58       "member": "Ext.dd.DropTarget",
59       "type": "String",
60       "doc": "<p>The CSS class applied to the drop target element while the drag source is over it (defaults to \"\").</p>\n",
61       "private": false,
62       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropTarget.js",
63       "linenr": 32,
64       "html_filename": "DropTarget.html",
65       "href": "DropTarget.html#Ext-dd-DropTarget-cfg-overClass"
66     }
67   ],
68   "method": [
69     {
70       "tagname": "method",
71       "name": "DropZone",
72       "member": "Ext.dd.DropZone",
73       "doc": "\n",
74       "params": [
75         {
76           "type": "Mixed",
77           "name": "el",
78           "doc": "<p>The container element</p>\n",
79           "optional": false
80         },
81         {
82           "type": "Object",
83           "name": "config",
84           "doc": "\n",
85           "optional": false
86         }
87       ],
88       "return": {
89         "type": "void",
90         "doc": "\n"
91       },
92       "private": false,
93       "static": false,
94       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
95       "linenr": 1,
96       "html_filename": "DropZone.html",
97       "href": "DropZone.html#Ext-dd-DropZone-method-constructor",
98       "shortDoc": "\n"
99     },
100     {
101       "tagname": "method",
102       "name": "addInvalidHandleClass",
103       "member": "Ext.dd.DragDrop",
104       "doc": "<p>Lets you specify a css class of elements that will not initiate a drag</p>\n",
105       "params": [
106         {
107           "type": "string",
108           "name": "cssClass",
109           "doc": "<p>the class of the elements you wish to ignore</p>\n",
110           "optional": false
111         }
112       ],
113       "return": {
114         "type": "void",
115         "doc": "\n"
116       },
117       "private": false,
118       "static": false,
119       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
120       "linenr": 894,
121       "html_filename": "DragDrop.html",
122       "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleClass",
123       "shortDoc": "<p>Lets you specify a css class of elements that will not initiate a drag</p>\n"
124     },
125     {
126       "tagname": "method",
127       "name": "addInvalidHandleId",
128       "member": "Ext.dd.DragDrop",
129       "doc": "<p>Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag</p>\n",
130       "params": [
131         {
132           "type": "string",
133           "name": "id",
134           "doc": "<p>the element id of the element you wish to ignore</p>\n",
135           "optional": false
136         }
137       ],
138       "return": {
139         "type": "void",
140         "doc": "\n"
141       },
142       "private": false,
143       "static": false,
144       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
145       "linenr": 881,
146       "html_filename": "DragDrop.html",
147       "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleId",
148       "shortDoc": "<p>Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag</p>\n"
149     },
150     {
151       "tagname": "method",
152       "name": "addInvalidHandleType",
153       "member": "Ext.dd.DragDrop",
154       "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",
155       "params": [
156         {
157           "type": "string",
158           "name": "tagName",
159           "doc": "<p>the type of element to exclude</p>\n",
160           "optional": false
161         }
162       ],
163       "return": {
164         "type": "void",
165         "doc": "\n"
166       },
167       "private": false,
168       "static": false,
169       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
170       "linenr": 869,
171       "html_filename": "DragDrop.html",
172       "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleType",
173       "shortDoc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate..."
174     },
175     {
176       "tagname": "method",
177       "name": "addToGroup",
178       "member": "Ext.dd.DragDrop",
179       "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",
180       "params": [
181         {
182           "type": "Object",
183           "name": "sGroup",
184           "doc": "<p>{string} the name of the group</p>\n",
185           "optional": false
186         }
187       ],
188       "return": {
189         "type": "void",
190         "doc": "\n"
191       },
192       "private": false,
193       "static": false,
194       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
195       "linenr": 730,
196       "html_filename": "DragDrop.html",
197       "href": "DragDrop.html#Ext-dd-DragDrop-method-addToGroup",
198       "shortDoc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belon..."
199     },
200     {
201       "tagname": "method",
202       "name": "applyConfig",
203       "member": "Ext.dd.DragDrop",
204       "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",
205       "params": [
206
207       ],
208       "return": {
209         "type": "void",
210         "doc": "\n"
211       },
212       "private": false,
213       "static": false,
214       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
215       "linenr": 635,
216       "html_filename": "DragDrop.html",
217       "href": "DragDrop.html#Ext-dd-DragDrop-method-applyConfig",
218       "shortDoc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level ..."
219     },
220     {
221       "tagname": "method",
222       "name": "clearConstraints",
223       "member": "Ext.dd.DragDrop",
224       "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",
225       "params": [
226
227       ],
228       "return": {
229         "type": "void",
230         "doc": "\n"
231       },
232       "private": false,
233       "static": false,
234       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
235       "linenr": 1049,
236       "html_filename": "DragDrop.html",
237       "href": "DragDrop.html#Ext-dd-DragDrop-method-clearConstraints",
238       "shortDoc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constrain..."
239     },
240     {
241       "tagname": "method",
242       "name": "clearTicks",
243       "member": "Ext.dd.DragDrop",
244       "doc": "<p>Clears any tick interval defined for this instance</p>\n",
245       "params": [
246
247       ],
248       "return": {
249         "type": "void",
250         "doc": "\n"
251       },
252       "private": false,
253       "static": false,
254       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
255       "linenr": 1060,
256       "html_filename": "DragDrop.html",
257       "href": "DragDrop.html#Ext-dd-DragDrop-method-clearTicks",
258       "shortDoc": "<p>Clears any tick interval defined for this instance</p>\n"
259     },
260     {
261       "tagname": "method",
262       "name": "constrainTo",
263       "member": "Ext.dd.DragDrop",
264       "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",
265       "params": [
266         {
267           "type": "Mixed",
268           "name": "constrainTo",
269           "doc": "<p>The element to constrain to.</p>\n",
270           "optional": false
271         },
272         {
273           "type": "Object/Number",
274           "name": "pad",
275           "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",
276           "optional": true
277         },
278         {
279           "type": "Boolean",
280           "name": "inContent",
281           "doc": "<p>(optional) Constrain the draggable in the content box of the element (inside padding and borders)</p>\n",
282           "optional": true
283         }
284       ],
285       "return": {
286         "type": "void",
287         "doc": "\n"
288       },
289       "private": false,
290       "static": false,
291       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
292       "linenr": 493,
293       "html_filename": "DragDrop.html",
294       "href": "DragDrop.html#Ext-dd-DragDrop-method-constrainTo",
295       "shortDoc": "Initializes the drag drop object's constraints to restrict movement to a certain element.\n\nUsage:\n\n var dd = new Ext...."
296     },
297     {
298       "tagname": "method",
299       "name": "endDrag",
300       "member": "Ext.dd.DragDrop",
301       "doc": "<p>Fired when we are done dragging the object</p>\n",
302       "params": [
303         {
304           "type": "Event",
305           "name": "e",
306           "doc": "<p>the mouseup event</p>\n",
307           "optional": false
308         }
309       ],
310       "return": {
311         "type": "void",
312         "doc": "\n"
313       },
314       "private": false,
315       "static": false,
316       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
317       "linenr": 445,
318       "html_filename": "DragDrop.html",
319       "href": "DragDrop.html#Ext-dd-DragDrop-method-endDrag",
320       "shortDoc": "<p>Fired when we are done dragging the object</p>\n"
321     },
322     {
323       "tagname": "method",
324       "name": "getDragEl",
325       "member": "Ext.dd.DragDrop",
326       "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",
327       "params": [
328
329       ],
330       "return": {
331         "type": "HTMLElement",
332         "doc": "<p>the html element</p>\n"
333       },
334       "private": false,
335       "static": false,
336       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
337       "linenr": 563,
338       "html_filename": "DragDrop.html",
339       "href": "DragDrop.html#Ext-dd-DragDrop-method-getDragEl",
340       "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..."
341     },
342     {
343       "tagname": "method",
344       "name": "getEl",
345       "member": "Ext.dd.DragDrop",
346       "doc": "<p>Returns a reference to the linked element</p>\n",
347       "params": [
348
349       ],
350       "return": {
351         "type": "HTMLElement",
352         "doc": "<p>the html element</p>\n"
353       },
354       "private": false,
355       "static": false,
356       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
357       "linenr": 550,
358       "html_filename": "DragDrop.html",
359       "href": "DragDrop.html#Ext-dd-DragDrop-method-getEl",
360       "shortDoc": "<p>Returns a reference to the linked element</p>\n"
361     },
362     {
363       "tagname": "method",
364       "name": "getTargetFromEvent",
365       "member": "Ext.dd.DropZone",
366       "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",
367       "params": [
368         {
369           "type": "Event",
370           "name": "e",
371           "doc": "<p>The event</p>\n",
372           "optional": false
373         }
374       ],
375       "return": {
376         "type": "Object",
377         "doc": "<p>data The custom data</p>\n"
378       },
379       "private": false,
380       "static": false,
381       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
382       "linenr": 75,
383       "html_filename": "DropZone.html",
384       "href": "DropZone.html#Ext-dd-DropZone-method-getTargetFromEvent",
385       "shortDoc": "Returns a custom data object associated with the DOM node that is the target of the event.  By default\nthis looks up ..."
386     },
387     {
388       "tagname": "method",
389       "name": "init",
390       "member": "Ext.dd.DragDrop",
391       "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",
392       "params": [
393         {
394           "type": "Object",
395           "name": "id",
396           "doc": "<p>the id of the linked element</p>\n",
397           "optional": false
398         },
399         {
400           "type": "String",
401           "name": "sGroup",
402           "doc": "<p>the group of related items</p>\n",
403           "optional": false
404         },
405         {
406           "type": "object",
407           "name": "config",
408           "doc": "<p>configuration attributes</p>\n",
409           "optional": false
410         }
411       ],
412       "return": {
413         "type": "void",
414         "doc": "\n"
415       },
416       "private": false,
417       "static": false,
418       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
419       "linenr": 574,
420       "html_filename": "DragDrop.html",
421       "href": "DragDrop.html#Ext-dd-DragDrop-method-init",
422       "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"
423     },
424     {
425       "tagname": "method",
426       "name": "initTarget",
427       "member": "Ext.dd.DragDrop",
428       "doc": "<p>Initializes Targeting functionality only... the object does not\nget a mousedown handler.</p>\n",
429       "params": [
430         {
431           "type": "Object",
432           "name": "id",
433           "doc": "<p>the id of the linked element</p>\n",
434           "optional": false
435         },
436         {
437           "type": "String",
438           "name": "sGroup",
439           "doc": "<p>the group of related items</p>\n",
440           "optional": false
441         },
442         {
443           "type": "object",
444           "name": "config",
445           "doc": "<p>configuration attributes</p>\n",
446           "optional": false
447         }
448       ],
449       "return": {
450         "type": "void",
451         "doc": "\n"
452       },
453       "private": false,
454       "static": false,
455       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
456       "linenr": 588,
457       "html_filename": "DragDrop.html",
458       "href": "DragDrop.html#Ext-dd-DragDrop-method-initTarget",
459       "shortDoc": "<p>Initializes Targeting functionality only... the object does not\nget a mousedown handler.</p>\n"
460     },
461     {
462       "tagname": "method",
463       "name": "isLocked",
464       "member": "Ext.dd.DragDrop",
465       "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",
466       "params": [
467
468       ],
469       "return": {
470         "type": "boolean",
471         "doc": "<p>true if this obj or all drag/drop is locked, else\nfalse</p>\n"
472       },
473       "private": false,
474       "static": false,
475       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
476       "linenr": 814,
477       "html_filename": "DragDrop.html",
478       "href": "DragDrop.html#Ext-dd-DragDrop-method-isLocked",
479       "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..."
480     },
481     {
482       "tagname": "method",
483       "name": "isValidHandleChild",
484       "member": "Ext.dd.DragDrop",
485       "doc": "<p>Checks the tag exclusion list to see if this click should be ignored</p>\n",
486       "params": [
487         {
488           "type": "HTMLElement",
489           "name": "node",
490           "doc": "<p>the HTMLElement to evaluate</p>\n",
491           "optional": false
492         }
493       ],
494       "return": {
495         "type": "boolean",
496         "doc": "<p>true if this is a valid tag type, false if not</p>\n"
497       },
498       "private": false,
499       "static": false,
500       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
501       "linenr": 940,
502       "html_filename": "DragDrop.html",
503       "href": "DragDrop.html#Ext-dd-DragDrop-method-isValidHandleChild",
504       "shortDoc": "<p>Checks the tag exclusion list to see if this click should be ignored</p>\n"
505     },
506     {
507       "tagname": "method",
508       "name": "lock",
509       "member": "Ext.dd.DragDrop",
510       "doc": "<p>Lock this instance</p>\n",
511       "params": [
512
513       ],
514       "return": {
515         "type": "void",
516         "doc": "\n"
517       },
518       "private": false,
519       "static": false,
520       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
521       "linenr": 177,
522       "html_filename": "DragDrop.html",
523       "href": "DragDrop.html#Ext-dd-DragDrop-method-lock",
524       "shortDoc": "<p>Lock this instance</p>\n"
525     },
526     {
527       "tagname": "method",
528       "name": "notifyDrop",
529       "member": "Ext.dd.DropZone",
530       "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",
531       "params": [
532         {
533           "type": "Ext.dd.DragSource",
534           "name": "source",
535           "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
536           "optional": false
537         },
538         {
539           "type": "Event",
540           "name": "e",
541           "doc": "<p>The event</p>\n",
542           "optional": false
543         },
544         {
545           "type": "Object",
546           "name": "data",
547           "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
548           "optional": false
549         }
550       ],
551       "return": {
552         "type": "Boolean",
553         "doc": "<p>False if the drop was invalid.</p>\n"
554       },
555       "private": false,
556       "static": false,
557       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
558       "linenr": 237,
559       "html_filename": "DropZone.html",
560       "href": "DropZone.html#Ext-dd-DropZone-method-notifyDrop",
561       "shortDoc": "The function a Ext.dd.DragSource calls once to notify this drop zone that the dragged item has\nbeen dropped on it.  T..."
562     },
563     {
564       "tagname": "method",
565       "name": "notifyEnter",
566       "member": "Ext.dd.DropZone",
567       "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",
568       "params": [
569         {
570           "type": "Ext.dd.DragSource",
571           "name": "source",
572           "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
573           "optional": false
574         },
575         {
576           "type": "Event",
577           "name": "e",
578           "doc": "<p>The event</p>\n",
579           "optional": false
580         },
581         {
582           "type": "Object",
583           "name": "data",
584           "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
585           "optional": false
586         }
587       ],
588       "return": {
589         "type": "String",
590         "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"
591       },
592       "private": false,
593       "static": false,
594       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
595       "linenr": 175,
596       "html_filename": "DropZone.html",
597       "href": "DropZone.html#Ext-dd-DropZone-method-notifyEnter",
598       "shortDoc": "The function a Ext.dd.DragSource calls once to notify this drop zone that the source is now over\nthe zone.  The defau..."
599     },
600     {
601       "tagname": "method",
602       "name": "notifyOut",
603       "member": "Ext.dd.DropZone",
604       "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",
605       "params": [
606         {
607           "type": "Ext.dd.DragSource",
608           "name": "source",
609           "doc": "<p>The drag source that was dragged over this drop target</p>\n",
610           "optional": false
611         },
612         {
613           "type": "Event",
614           "name": "e",
615           "doc": "<p>The event</p>\n",
616           "optional": false
617         },
618         {
619           "type": "Object",
620           "name": "data",
621           "doc": "<p>An object containing arbitrary data supplied by the drag zone</p>\n",
622           "optional": false
623         }
624       ],
625       "return": {
626         "type": "void",
627         "doc": "\n"
628       },
629       "private": false,
630       "static": false,
631       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
632       "linenr": 222,
633       "html_filename": "DropZone.html",
634       "href": "DropZone.html#Ext-dd-DropZone-method-notifyOut",
635       "shortDoc": "The function a Ext.dd.DragSource calls once to notify this drop zone that the source has been dragged\nout of the zone..."
636     },
637     {
638       "tagname": "method",
639       "name": "notifyOver",
640       "member": "Ext.dd.DropZone",
641       "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",
642       "params": [
643         {
644           "type": "Ext.dd.DragSource",
645           "name": "source",
646           "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
647           "optional": false
648         },
649         {
650           "type": "Event",
651           "name": "e",
652           "doc": "<p>The event</p>\n",
653           "optional": false
654         },
655         {
656           "type": "Object",
657           "name": "data",
658           "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
659           "optional": false
660         }
661       ],
662       "return": {
663         "type": "String",
664         "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"
665       },
666       "private": false,
667       "static": false,
668       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
669       "linenr": 190,
670       "html_filename": "DropZone.html",
671       "href": "DropZone.html#Ext-dd-DropZone-method-notifyOver",
672       "shortDoc": "The function a Ext.dd.DragSource calls continuously while it is being dragged over the drop zone.\nThis method will be..."
673     },
674     {
675       "tagname": "method",
676       "name": "onAvailable",
677       "member": "Ext.dd.DragDrop",
678       "doc": "<p>Override the onAvailable method to do what is needed after the initial\nposition was determined.</p>\n",
679       "params": [
680
681       ],
682       "return": {
683         "type": "void",
684         "doc": "\n"
685       },
686       "private": false,
687       "static": false,
688       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
689       "linenr": 474,
690       "html_filename": "DragDrop.html",
691       "href": "DragDrop.html#Ext-dd-DragDrop-method-onAvailable",
692       "shortDoc": "<p>Override the onAvailable method to do what is needed after the initial\nposition was determined.</p>\n"
693     },
694     {
695       "tagname": "method",
696       "name": "onContainerDrop",
697       "member": "Ext.dd.DropZone",
698       "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",
699       "params": [
700         {
701           "type": "Ext.dd.DragSource",
702           "name": "source",
703           "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
704           "optional": false
705         },
706         {
707           "type": "Event",
708           "name": "e",
709           "doc": "<p>The event</p>\n",
710           "optional": false
711         },
712         {
713           "type": "Object",
714           "name": "data",
715           "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
716           "optional": false
717         }
718       ],
719       "return": {
720         "type": "Boolean",
721         "doc": "<p>True if the drop was valid, else false</p>\n"
722       },
723       "private": false,
724       "static": false,
725       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
726       "linenr": 161,
727       "html_filename": "DropZone.html",
728       "href": "DropZone.html#Ext-dd-DropZone-method-onContainerDrop",
729       "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has been dropped on it,\nbut not on any of its registered..."
730     },
731     {
732       "tagname": "method",
733       "name": "onContainerOver",
734       "member": "Ext.dd.DropZone",
735       "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",
736       "params": [
737         {
738           "type": "Ext.dd.DragSource",
739           "name": "source",
740           "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
741           "optional": false
742         },
743         {
744           "type": "Event",
745           "name": "e",
746           "doc": "<p>The event</p>\n",
747           "optional": false
748         },
749         {
750           "type": "Object",
751           "name": "data",
752           "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
753           "optional": false
754         }
755       ],
756       "return": {
757         "type": "String",
758         "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"
759       },
760       "private": false,
761       "static": false,
762       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
763       "linenr": 147,
764       "html_filename": "DropZone.html",
765       "href": "DropZone.html#Ext-dd-DropZone-method-onContainerOver",
766       "shortDoc": "Called while the DropZone determines that a Ext.dd.DragSource is being dragged over it,\nbut not over any of its regis..."
767     },
768     {
769       "tagname": "method",
770       "name": "onDrag",
771       "member": "Ext.dd.DragDrop",
772       "doc": "<p>Abstract method called during the onMouseMove event while dragging an\nobject.</p>\n",
773       "params": [
774         {
775           "type": "Event",
776           "name": "e",
777           "doc": "<p>the mousemove event</p>\n",
778           "optional": false
779         }
780       ],
781       "return": {
782         "type": "void",
783         "doc": "\n"
784       },
785       "private": false,
786       "static": false,
787       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
788       "linenr": 358,
789       "html_filename": "DragDrop.html",
790       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDrag",
791       "shortDoc": "<p>Abstract method called during the onMouseMove event while dragging an\nobject.</p>\n"
792     },
793     {
794       "tagname": "method",
795       "name": "onDragDrop",
796       "member": "Ext.dd.DragDrop",
797       "doc": "<p>Abstract method called when this item is dropped on another DragDrop\nobj</p>\n",
798       "params": [
799         {
800           "type": "Event",
801           "name": "e",
802           "doc": "<p>the mouseup event</p>\n",
803           "optional": false
804         },
805         {
806           "type": "String|DragDrop[]",
807           "name": "id",
808           "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",
809           "optional": false
810         }
811       ],
812       "return": {
813         "type": "void",
814         "doc": "\n"
815       },
816       "private": false,
817       "static": false,
818       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
819       "linenr": 419,
820       "html_filename": "DragDrop.html",
821       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragDrop",
822       "shortDoc": "<p>Abstract method called when this item is dropped on another DragDrop\nobj</p>\n"
823     },
824     {
825       "tagname": "method",
826       "name": "onDragEnter",
827       "member": "Ext.dd.DragDrop",
828       "doc": "<p>Abstract method called when this element fist begins hovering over\nanother DragDrop obj</p>\n",
829       "params": [
830         {
831           "type": "Event",
832           "name": "e",
833           "doc": "<p>the mousemove event</p>\n",
834           "optional": false
835         },
836         {
837           "type": "String|DragDrop[]",
838           "name": "id",
839           "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",
840           "optional": false
841         }
842       ],
843       "return": {
844         "type": "void",
845         "doc": "\n"
846       },
847       "private": false,
848       "static": false,
849       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
850       "linenr": 366,
851       "html_filename": "DragDrop.html",
852       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragEnter",
853       "shortDoc": "<p>Abstract method called when this element fist begins hovering over\nanother DragDrop obj</p>\n"
854     },
855     {
856       "tagname": "method",
857       "name": "onDragOut",
858       "member": "Ext.dd.DragDrop",
859       "doc": "<p>Abstract method called when we are no longer hovering over an element</p>\n",
860       "params": [
861         {
862           "type": "Event",
863           "name": "e",
864           "doc": "<p>the mousemove event</p>\n",
865           "optional": false
866         },
867         {
868           "type": "String|DragDrop[]",
869           "name": "id",
870           "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",
871           "optional": false
872         }
873       ],
874       "return": {
875         "type": "void",
876         "doc": "\n"
877       },
878       "private": false,
879       "static": false,
880       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
881       "linenr": 402,
882       "html_filename": "DragDrop.html",
883       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragOut",
884       "shortDoc": "<p>Abstract method called when we are no longer hovering over an element</p>\n"
885     },
886     {
887       "tagname": "method",
888       "name": "onDragOver",
889       "member": "Ext.dd.DragDrop",
890       "doc": "<p>Abstract method called when this element is hovering over another\nDragDrop obj</p>\n",
891       "params": [
892         {
893           "type": "Event",
894           "name": "e",
895           "doc": "<p>the mousemove event</p>\n",
896           "optional": false
897         },
898         {
899           "type": "String|DragDrop[]",
900           "name": "id",
901           "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",
902           "optional": false
903         }
904       ],
905       "return": {
906         "type": "void",
907         "doc": "\n"
908       },
909       "private": false,
910       "static": false,
911       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
912       "linenr": 384,
913       "html_filename": "DragDrop.html",
914       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragOver",
915       "shortDoc": "<p>Abstract method called when this element is hovering over another\nDragDrop obj</p>\n"
916     },
917     {
918       "tagname": "method",
919       "name": "onInvalidDrop",
920       "member": "Ext.dd.DragDrop",
921       "doc": "<p>Abstract method called when this item is dropped on an area with no\ndrop target</p>\n",
922       "params": [
923         {
924           "type": "Event",
925           "name": "e",
926           "doc": "<p>the mouseup event</p>\n",
927           "optional": false
928         }
929       ],
930       "return": {
931         "type": "void",
932         "doc": "\n"
933       },
934       "private": false,
935       "static": false,
936       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
937       "linenr": 430,
938       "html_filename": "DragDrop.html",
939       "href": "DragDrop.html#Ext-dd-DragDrop-method-onInvalidDrop",
940       "shortDoc": "<p>Abstract method called when this item is dropped on an area with no\ndrop target</p>\n"
941     },
942     {
943       "tagname": "method",
944       "name": "onMouseDown",
945       "member": "Ext.dd.DragDrop",
946       "doc": "<p>Event handler that fires when a drag/drop obj gets a mousedown</p>\n",
947       "params": [
948         {
949           "type": "Event",
950           "name": "e",
951           "doc": "<p>the mousedown event</p>\n",
952           "optional": false
953         }
954       ],
955       "return": {
956         "type": "void",
957         "doc": "\n"
958       },
959       "private": false,
960       "static": false,
961       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
962       "linenr": 460,
963       "html_filename": "DragDrop.html",
964       "href": "DragDrop.html#Ext-dd-DragDrop-method-onMouseDown",
965       "shortDoc": "<p>Event handler that fires when a drag/drop obj gets a mousedown</p>\n"
966     },
967     {
968       "tagname": "method",
969       "name": "onMouseUp",
970       "member": "Ext.dd.DragDrop",
971       "doc": "<p>Event handler that fires when a drag/drop obj gets a mouseup</p>\n",
972       "params": [
973         {
974           "type": "Event",
975           "name": "e",
976           "doc": "<p>the mouseup event</p>\n",
977           "optional": false
978         }
979       ],
980       "return": {
981         "type": "void",
982         "doc": "\n"
983       },
984       "private": false,
985       "static": false,
986       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
987       "linenr": 467,
988       "html_filename": "DragDrop.html",
989       "href": "DragDrop.html#Ext-dd-DragDrop-method-onMouseUp",
990       "shortDoc": "<p>Event handler that fires when a drag/drop obj gets a mouseup</p>\n"
991     },
992     {
993       "tagname": "method",
994       "name": "onNodeDrop",
995       "member": "Ext.dd.DropZone",
996       "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",
997       "params": [
998         {
999           "type": "Object",
1000           "name": "nodeData",
1001           "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",
1002           "optional": false
1003         },
1004         {
1005           "type": "Ext.dd.DragSource",
1006           "name": "source",
1007           "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
1008           "optional": false
1009         },
1010         {
1011           "type": "Event",
1012           "name": "e",
1013           "doc": "<p>The event</p>\n",
1014           "optional": false
1015         },
1016         {
1017           "type": "Object",
1018           "name": "data",
1019           "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
1020           "optional": false
1021         }
1022       ],
1023       "return": {
1024         "type": "Boolean",
1025         "doc": "<p>True if the drop was valid, else false</p>\n"
1026       },
1027       "private": false,
1028       "static": false,
1029       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
1030       "linenr": 132,
1031       "html_filename": "DropZone.html",
1032       "href": "DropZone.html#Ext-dd-DropZone-method-onNodeDrop",
1033       "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has been dropped onto\nthe drop node.  The default implem..."
1034     },
1035     {
1036       "tagname": "method",
1037       "name": "onNodeEnter",
1038       "member": "Ext.dd.DropZone",
1039       "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",
1040       "params": [
1041         {
1042           "type": "Object",
1043           "name": "nodeData",
1044           "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",
1045           "optional": false
1046         },
1047         {
1048           "type": "Ext.dd.DragSource",
1049           "name": "source",
1050           "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
1051           "optional": false
1052         },
1053         {
1054           "type": "Event",
1055           "name": "e",
1056           "doc": "<p>The event</p>\n",
1057           "optional": false
1058         },
1059         {
1060           "type": "Object",
1061           "name": "data",
1062           "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
1063           "optional": false
1064         }
1065       ],
1066       "return": {
1067         "type": "void",
1068         "doc": "\n"
1069       },
1070       "private": false,
1071       "static": false,
1072       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
1073       "linenr": 86,
1074       "html_filename": "DropZone.html",
1075       "href": "DropZone.html#Ext-dd-DropZone-method-onNodeEnter",
1076       "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has entered a drop node\nthat has either been registered ..."
1077     },
1078     {
1079       "tagname": "method",
1080       "name": "onNodeOut",
1081       "member": "Ext.dd.DropZone",
1082       "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",
1083       "params": [
1084         {
1085           "type": "Object",
1086           "name": "nodeData",
1087           "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",
1088           "optional": false
1089         },
1090         {
1091           "type": "Ext.dd.DragSource",
1092           "name": "source",
1093           "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
1094           "optional": false
1095         },
1096         {
1097           "type": "Event",
1098           "name": "e",
1099           "doc": "<p>The event</p>\n",
1100           "optional": false
1101         },
1102         {
1103           "type": "Object",
1104           "name": "data",
1105           "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
1106           "optional": false
1107         }
1108       ],
1109       "return": {
1110         "type": "void",
1111         "doc": "\n"
1112       },
1113       "private": false,
1114       "static": false,
1115       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
1116       "linenr": 118,
1117       "html_filename": "DropZone.html",
1118       "href": "DropZone.html#Ext-dd-DropZone-method-onNodeOut",
1119       "shortDoc": "Called when the DropZone determines that a Ext.dd.DragSource has been dragged out of\nthe drop node without dropping. ..."
1120     },
1121     {
1122       "tagname": "method",
1123       "name": "onNodeOver",
1124       "member": "Ext.dd.DropZone",
1125       "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",
1126       "params": [
1127         {
1128           "type": "Object",
1129           "name": "nodeData",
1130           "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",
1131           "optional": false
1132         },
1133         {
1134           "type": "Ext.dd.DragSource",
1135           "name": "source",
1136           "doc": "<p>The drag source that was dragged over this drop zone</p>\n",
1137           "optional": false
1138         },
1139         {
1140           "type": "Event",
1141           "name": "e",
1142           "doc": "<p>The event</p>\n",
1143           "optional": false
1144         },
1145         {
1146           "type": "Object",
1147           "name": "data",
1148           "doc": "<p>An object containing arbitrary data supplied by the drag source</p>\n",
1149           "optional": false
1150         }
1151       ],
1152       "return": {
1153         "type": "String",
1154         "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"
1155       },
1156       "private": false,
1157       "static": false,
1158       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
1159       "linenr": 101,
1160       "html_filename": "DropZone.html",
1161       "href": "DropZone.html#Ext-dd-DropZone-method-onNodeOver",
1162       "shortDoc": "Called while the DropZone determines that a Ext.dd.DragSource is over a drop node\nthat has either been registered or ..."
1163     },
1164     {
1165       "tagname": "method",
1166       "name": "removeFromGroup",
1167       "member": "Ext.dd.DragDrop",
1168       "doc": "<p>Remove's this instance from the supplied interaction group</p>\n",
1169       "params": [
1170         {
1171           "type": "string",
1172           "name": "sGroup",
1173           "doc": "<p>The group to drop</p>\n",
1174           "optional": false
1175         }
1176       ],
1177       "return": {
1178         "type": "void",
1179         "doc": "\n"
1180       },
1181       "private": false,
1182       "static": false,
1183       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1184       "linenr": 742,
1185       "html_filename": "DragDrop.html",
1186       "href": "DragDrop.html#Ext-dd-DragDrop-method-removeFromGroup",
1187       "shortDoc": "<p>Remove's this instance from the supplied interaction group</p>\n"
1188     },
1189     {
1190       "tagname": "method",
1191       "name": "removeInvalidHandleClass",
1192       "member": "Ext.dd.DragDrop",
1193       "doc": "<p>Unsets an invalid css class</p>\n",
1194       "params": [
1195         {
1196           "type": "string",
1197           "name": "cssClass",
1198           "doc": "<p>the class of the element(s) you wish to\nre-enable</p>\n",
1199           "optional": false
1200         }
1201       ],
1202       "return": {
1203         "type": "void",
1204         "doc": "\n"
1205       },
1206       "private": false,
1207       "static": false,
1208       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1209       "linenr": 926,
1210       "html_filename": "DragDrop.html",
1211       "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleClass",
1212       "shortDoc": "<p>Unsets an invalid css class</p>\n"
1213     },
1214     {
1215       "tagname": "method",
1216       "name": "removeInvalidHandleId",
1217       "member": "Ext.dd.DragDrop",
1218       "doc": "<p>Unsets an invalid handle id</p>\n",
1219       "params": [
1220         {
1221           "type": "string",
1222           "name": "id",
1223           "doc": "<p>the id of the element to re-enable</p>\n",
1224           "optional": false
1225         }
1226       ],
1227       "return": {
1228         "type": "void",
1229         "doc": "\n"
1230       },
1231       "private": false,
1232       "static": false,
1233       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1234       "linenr": 914,
1235       "html_filename": "DragDrop.html",
1236       "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleId",
1237       "shortDoc": "<p>Unsets an invalid handle id</p>\n"
1238     },
1239     {
1240       "tagname": "method",
1241       "name": "removeInvalidHandleType",
1242       "member": "Ext.dd.DragDrop",
1243       "doc": "<p>Unsets an excluded tag name set by addInvalidHandleType</p>\n",
1244       "params": [
1245         {
1246           "type": "string",
1247           "name": "tagName",
1248           "doc": "<p>the type of element to unexclude</p>\n",
1249           "optional": false
1250         }
1251       ],
1252       "return": {
1253         "type": "void",
1254         "doc": "\n"
1255       },
1256       "private": false,
1257       "static": false,
1258       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1259       "linenr": 903,
1260       "html_filename": "DragDrop.html",
1261       "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleType",
1262       "shortDoc": "<p>Unsets an excluded tag name set by addInvalidHandleType</p>\n"
1263     },
1264     {
1265       "tagname": "method",
1266       "name": "resetConstraints",
1267       "member": "Ext.dd.DragDrop",
1268       "doc": "<p>resetConstraints must be called if you manually reposition a dd element.</p>\n",
1269       "params": [
1270         {
1271           "type": "boolean",
1272           "name": "maintainOffset",
1273           "doc": "\n",
1274           "optional": false
1275         }
1276       ],
1277       "return": {
1278         "type": "void",
1279         "doc": "\n"
1280       },
1281       "private": false,
1282       "static": false,
1283       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1284       "linenr": 1093,
1285       "html_filename": "DragDrop.html",
1286       "href": "DragDrop.html#Ext-dd-DragDrop-method-resetConstraints",
1287       "shortDoc": "<p>resetConstraints must be called if you manually reposition a dd element.</p>\n"
1288     },
1289     {
1290       "tagname": "method",
1291       "name": "setDragElId",
1292       "member": "Ext.dd.DragDrop",
1293       "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",
1294       "params": [
1295         {
1296           "type": "Object",
1297           "name": "id",
1298           "doc": "<p>{string} the id of the element that will be used to initiate the drag</p>\n",
1299           "optional": false
1300         }
1301       ],
1302       "return": {
1303         "type": "void",
1304         "doc": "\n"
1305       },
1306       "private": false,
1307       "static": false,
1308       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1309       "linenr": 755,
1310       "html_filename": "DragDrop.html",
1311       "href": "DragDrop.html#Ext-dd-DragDrop-method-setDragElId",
1312       "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"
1313     },
1314     {
1315       "tagname": "method",
1316       "name": "setHandleElId",
1317       "member": "Ext.dd.DragDrop",
1318       "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",
1319       "params": [
1320         {
1321           "type": "Object",
1322           "name": "id",
1323           "doc": "<p>{string} the id of the element that will be used to\ninitiate the drag.</p>\n",
1324           "optional": false
1325         }
1326       ],
1327       "return": {
1328         "type": "void",
1329         "doc": "\n"
1330       },
1331       "private": false,
1332       "static": false,
1333       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1334       "linenr": 765,
1335       "html_filename": "DragDrop.html",
1336       "href": "DragDrop.html#Ext-dd-DragDrop-method-setHandleElId",
1337       "shortDoc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example o..."
1338     },
1339     {
1340       "tagname": "method",
1341       "name": "setInitPosition",
1342       "member": "Ext.dd.DragDrop",
1343       "doc": "<p>Stores the initial placement of the linked element.</p>\n",
1344       "params": [
1345         {
1346           "type": "int",
1347           "name": "diffX",
1348           "doc": "<p>the X offset, default 0</p>\n",
1349           "optional": false
1350         },
1351         {
1352           "type": "int",
1353           "name": "diffY",
1354           "doc": "<p>the Y offset, default 0</p>\n",
1355           "optional": false
1356         }
1357       ],
1358       "return": {
1359         "type": "void",
1360         "doc": "\n"
1361       },
1362       "private": false,
1363       "static": false,
1364       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1365       "linenr": 688,
1366       "html_filename": "DragDrop.html",
1367       "href": "DragDrop.html#Ext-dd-DragDrop-method-setInitPosition",
1368       "shortDoc": "<p>Stores the initial placement of the linked element.</p>\n"
1369     },
1370     {
1371       "tagname": "method",
1372       "name": "setOuterHandleElId",
1373       "member": "Ext.dd.DragDrop",
1374       "doc": "<p>Allows you to set an element outside of the linked element as a drag\nhandle</p>\n",
1375       "params": [
1376         {
1377           "type": "Object",
1378           "name": "id",
1379           "doc": "<p>the id of the element that will be used to initiate the drag</p>\n",
1380           "optional": false
1381         }
1382       ],
1383       "return": {
1384         "type": "void",
1385         "doc": "\n"
1386       },
1387       "private": false,
1388       "static": false,
1389       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1390       "linenr": 784,
1391       "html_filename": "DragDrop.html",
1392       "href": "DragDrop.html#Ext-dd-DragDrop-method-setOuterHandleElId",
1393       "shortDoc": "<p>Allows you to set an element outside of the linked element as a drag\nhandle</p>\n"
1394     },
1395     {
1396       "tagname": "method",
1397       "name": "setPadding",
1398       "member": "Ext.dd.DragDrop",
1399       "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",
1400       "params": [
1401         {
1402           "type": "int",
1403           "name": "iTop",
1404           "doc": "<p>Top pad</p>\n",
1405           "optional": false
1406         },
1407         {
1408           "type": "int",
1409           "name": "iRight",
1410           "doc": "<p>Right pad</p>\n",
1411           "optional": false
1412         },
1413         {
1414           "type": "int",
1415           "name": "iBot",
1416           "doc": "<p>Bot pad</p>\n",
1417           "optional": false
1418         },
1419         {
1420           "type": "int",
1421           "name": "iLeft",
1422           "doc": "<p>Left pad</p>\n",
1423           "optional": false
1424         }
1425       ],
1426       "return": {
1427         "type": "void",
1428         "doc": "\n"
1429       },
1430       "private": false,
1431       "static": false,
1432       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1433       "linenr": 665,
1434       "html_filename": "DragDrop.html",
1435       "href": "DragDrop.html#Ext-dd-DragDrop-method-setPadding",
1436       "shortDoc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targe..."
1437     },
1438     {
1439       "tagname": "method",
1440       "name": "setXConstraint",
1441       "member": "Ext.dd.DragDrop",
1442       "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",
1443       "params": [
1444         {
1445           "type": "int",
1446           "name": "iLeft",
1447           "doc": "<p>the number of pixels the element can move to the left</p>\n",
1448           "optional": false
1449         },
1450         {
1451           "type": "int",
1452           "name": "iRight",
1453           "doc": "<p>the number of pixels the element can move to the\nright</p>\n",
1454           "optional": false
1455         },
1456         {
1457           "type": "int",
1458           "name": "iTickSize",
1459           "doc": "<p>optional parameter for specifying that the\nelement\nshould move iTickSize pixels at a time.</p>\n",
1460           "optional": false
1461         }
1462       ],
1463       "return": {
1464         "type": "void",
1465         "doc": "\n"
1466       },
1467       "private": false,
1468       "static": false,
1469       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1470       "linenr": 1026,
1471       "html_filename": "DragDrop.html",
1472       "href": "DragDrop.html#Ext-dd-DragDrop-method-setXConstraint",
1473       "shortDoc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of th..."
1474     },
1475     {
1476       "tagname": "method",
1477       "name": "setYConstraint",
1478       "member": "Ext.dd.DragDrop",
1479       "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",
1480       "params": [
1481         {
1482           "type": "int",
1483           "name": "iUp",
1484           "doc": "<p>the number of pixels the element can move up</p>\n",
1485           "optional": false
1486         },
1487         {
1488           "type": "int",
1489           "name": "iDown",
1490           "doc": "<p>the number of pixels the element can move down</p>\n",
1491           "optional": false
1492         },
1493         {
1494           "type": "int",
1495           "name": "iTickSize",
1496           "doc": "<p>optional parameter for specifying that the\nelement should move iTickSize pixels at a time.</p>\n",
1497           "optional": false
1498         }
1499       ],
1500       "return": {
1501         "type": "void",
1502         "doc": "\n"
1503       },
1504       "private": false,
1505       "static": false,
1506       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1507       "linenr": 1071,
1508       "html_filename": "DragDrop.html",
1509       "href": "DragDrop.html#Ext-dd-DragDrop-method-setYConstraint",
1510       "shortDoc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element..."
1511     },
1512     {
1513       "tagname": "method",
1514       "name": "startDrag",
1515       "member": "Ext.dd.DragDrop",
1516       "doc": "<p>Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met.</p>\n",
1517       "params": [
1518         {
1519           "type": "int",
1520           "name": "X",
1521           "doc": "<p>click location</p>\n",
1522           "optional": false
1523         },
1524         {
1525           "type": "int",
1526           "name": "Y",
1527           "doc": "<p>click location</p>\n",
1528           "optional": false
1529         }
1530       ],
1531       "return": {
1532         "type": "void",
1533         "doc": "\n"
1534       },
1535       "private": false,
1536       "static": false,
1537       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1538       "linenr": 342,
1539       "html_filename": "DragDrop.html",
1540       "href": "DragDrop.html#Ext-dd-DragDrop-method-startDrag",
1541       "shortDoc": "<p>Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met.</p>\n"
1542     },
1543     {
1544       "tagname": "method",
1545       "name": "toString",
1546       "member": "Ext.dd.DragDrop",
1547       "doc": "<p>toString method</p>\n",
1548       "params": [
1549
1550       ],
1551       "return": {
1552         "type": "string",
1553         "doc": "<p>string representation of the dd obj</p>\n"
1554       },
1555       "private": false,
1556       "static": false,
1557       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1558       "linenr": 1160,
1559       "html_filename": "DragDrop.html",
1560       "href": "DragDrop.html#Ext-dd-DragDrop-method-toString",
1561       "shortDoc": "<p>toString method</p>\n"
1562     },
1563     {
1564       "tagname": "method",
1565       "name": "unlock",
1566       "member": "Ext.dd.DragDrop",
1567       "doc": "<p>Unlock this instace</p>\n",
1568       "params": [
1569
1570       ],
1571       "return": {
1572         "type": "void",
1573         "doc": "\n"
1574       },
1575       "private": false,
1576       "static": false,
1577       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1578       "linenr": 193,
1579       "html_filename": "DragDrop.html",
1580       "href": "DragDrop.html#Ext-dd-DragDrop-method-unlock",
1581       "shortDoc": "<p>Unlock this instace</p>\n"
1582     },
1583     {
1584       "tagname": "method",
1585       "name": "unreg",
1586       "member": "Ext.dd.DragDrop",
1587       "doc": "<p>Remove all drag and drop hooks for this element</p>\n",
1588       "params": [
1589
1590       ],
1591       "return": {
1592         "type": "void",
1593         "doc": "\n"
1594       },
1595       "private": false,
1596       "static": false,
1597       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1598       "linenr": 800,
1599       "html_filename": "DragDrop.html",
1600       "href": "DragDrop.html#Ext-dd-DragDrop-method-unreg",
1601       "shortDoc": "<p>Remove all drag and drop hooks for this element</p>\n"
1602     }
1603   ],
1604   "property": [
1605     {
1606       "tagname": "property",
1607       "name": "available",
1608       "member": "Ext.dd.DragDrop",
1609       "type": "boolean",
1610       "doc": "<p>The available property is false until the linked dom element is accessible.</p>\n",
1611       "private": false,
1612       "static": false,
1613       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1614       "linenr": 315,
1615       "html_filename": "DragDrop.html",
1616       "href": "DragDrop.html#Ext-dd-DragDrop-property-available"
1617     },
1618     {
1619       "tagname": "property",
1620       "name": "config",
1621       "member": "Ext.dd.DragDrop",
1622       "type": "object",
1623       "doc": "<p>Configuration attributes passed into the constructor</p>\n",
1624       "private": false,
1625       "static": false,
1626       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1627       "linenr": 81,
1628       "html_filename": "DragDrop.html",
1629       "href": "DragDrop.html#Ext-dd-DragDrop-property-config"
1630     },
1631     {
1632       "tagname": "property",
1633       "name": "defaultPadding",
1634       "member": "Ext.dd.DragDrop",
1635       "type": "Object",
1636       "doc": "<p>Provides default constraint padding to \"constrainTo\" elements (defaults to {left: 0, right:0, top:0, bottom:0}).</p>\n",
1637       "private": false,
1638       "static": false,
1639       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1640       "linenr": 482,
1641       "html_filename": "DragDrop.html",
1642       "href": "DragDrop.html#Ext-dd-DragDrop-property-defaultPadding"
1643     },
1644     {
1645       "tagname": "property",
1646       "name": "groups",
1647       "member": "Ext.dd.DragDrop",
1648       "type": "object",
1649       "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",
1650       "private": false,
1651       "static": false,
1652       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1653       "linenr": 158,
1654       "html_filename": "DragDrop.html",
1655       "href": "DragDrop.html#Ext-dd-DragDrop-property-groups",
1656       "shortDoc": "The group defines a logical collection of DragDrop objects that are\nrelated.  Instances only get events when interact..."
1657     },
1658     {
1659       "tagname": "property",
1660       "name": "hasOuterHandles",
1661       "member": "Ext.dd.DragDrop",
1662       "type": "boolean",
1663       "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",
1664       "private": false,
1665       "static": false,
1666       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1667       "linenr": 322,
1668       "html_filename": "DragDrop.html",
1669       "href": "DragDrop.html#Ext-dd-DragDrop-property-hasOuterHandles",
1670       "shortDoc": "By default, drags can only be initiated if the mousedown occurs in the\nregion the linked element is.  This is done in..."
1671     },
1672     {
1673       "tagname": "property",
1674       "name": "id",
1675       "member": "Ext.dd.DragDrop",
1676       "type": "String",
1677       "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",
1678       "private": false,
1679       "static": false,
1680       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1681       "linenr": 71,
1682       "html_filename": "DragDrop.html",
1683       "href": "DragDrop.html#Ext-dd-DragDrop-property-id",
1684       "shortDoc": "The id of the element associated with this object.  This is what we\nrefer to as the \"linked element\" because the size..."
1685     },
1686     {
1687       "tagname": "property",
1688       "name": "ignoreSelf",
1689       "member": "Ext.dd.DragDrop",
1690       "type": "Boolean",
1691       "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",
1692       "private": false,
1693       "static": false,
1694       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1695       "linenr": 63,
1696       "html_filename": "DragDrop.html",
1697       "href": "DragDrop.html#Ext-dd-DragDrop-property-ignoreSelf",
1698       "shortDoc": "Set to false to enable a DragDrop object to fire drag events while dragging\nover its own Element. Defaults to true - ..."
1699     },
1700     {
1701       "tagname": "property",
1702       "name": "invalidHandleClasses",
1703       "member": "Ext.dd.DragDrop",
1704       "type": "Array",
1705       "doc": "<p>An Array of CSS class names for elements to be considered in valid as drag handles.</p>\n",
1706       "private": false,
1707       "static": false,
1708       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1709       "linenr": 133,
1710       "html_filename": "DragDrop.html",
1711       "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleClasses"
1712     },
1713     {
1714       "tagname": "property",
1715       "name": "invalidHandleIds",
1716       "member": "Ext.dd.DragDrop",
1717       "type": "Object",
1718       "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",
1719       "private": false,
1720       "static": false,
1721       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1722       "linenr": 121,
1723       "html_filename": "DragDrop.html",
1724       "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleIds",
1725       "shortDoc": "An object who's property names identify the IDs of elements to be considered invalid as drag handles.\nA non-null prop..."
1726     },
1727     {
1728       "tagname": "property",
1729       "name": "invalidHandleTypes",
1730       "member": "Ext.dd.DragDrop",
1731       "type": "Object",
1732       "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",
1733       "private": false,
1734       "static": false,
1735       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1736       "linenr": 109,
1737       "html_filename": "DragDrop.html",
1738       "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleTypes",
1739       "shortDoc": "An object who's property names identify HTML tags to be considered invalid as drag handles.\nA non-null property value..."
1740     },
1741     {
1742       "tagname": "property",
1743       "name": "isTarget",
1744       "member": "Ext.dd.DragDrop",
1745       "type": "boolean",
1746       "doc": "<p>By default, all instances can be a drop target.  This can be disabled by\nsetting isTarget to false.</p>\n",
1747       "private": false,
1748       "static": false,
1749       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1750       "linenr": 201,
1751       "html_filename": "DragDrop.html",
1752       "href": "DragDrop.html#Ext-dd-DragDrop-property-isTarget"
1753     },
1754     {
1755       "tagname": "property",
1756       "name": "maintainOffset",
1757       "member": "Ext.dd.DragDrop",
1758       "type": "boolean",
1759       "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",
1760       "private": false,
1761       "static": false,
1762       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1763       "linenr": 279,
1764       "html_filename": "DragDrop.html",
1765       "href": "DragDrop.html#Ext-dd-DragDrop-property-maintainOffset",
1766       "shortDoc": "Maintain offsets when we resetconstraints.  Set to true when you want\nthe position of the element relative to its par..."
1767     },
1768     {
1769       "tagname": "property",
1770       "name": "moveOnly",
1771       "member": "Ext.dd.DragDrop",
1772       "type": "boolean",
1773       "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",
1774       "private": false,
1775       "static": false,
1776       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1777       "linenr": 185,
1778       "html_filename": "DragDrop.html",
1779       "href": "DragDrop.html#Ext-dd-DragDrop-property-moveOnly",
1780       "shortDoc": "When set to true, other DD objects in cooperating DDGroups do not receive\nnotification events when this DD object is ..."
1781     },
1782     {
1783       "tagname": "property",
1784       "name": "padding",
1785       "member": "Ext.dd.DragDrop",
1786       "type": "[int]",
1787       "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",
1788       "private": false,
1789       "static": false,
1790       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1791       "linenr": 209,
1792       "html_filename": "DragDrop.html",
1793       "href": "DragDrop.html#Ext-dd-DragDrop-property-padding",
1794       "shortDoc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object.\nAn ..."
1795     },
1796     {
1797       "tagname": "property",
1798       "name": "primaryButtonOnly",
1799       "member": "Ext.dd.DragDrop",
1800       "type": "boolean",
1801       "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",
1802       "private": false,
1803       "static": false,
1804       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1805       "linenr": 305,
1806       "html_filename": "DragDrop.html",
1807       "href": "DragDrop.html#Ext-dd-DragDrop-property-primaryButtonOnly",
1808       "shortDoc": "By default the drag and drop instance will only respond to the primary\nbutton click (left button for a right-handed m..."
1809     },
1810     {
1811       "tagname": "property",
1812       "name": "xTicks",
1813       "member": "Ext.dd.DragDrop",
1814       "type": "[int]",
1815       "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",
1816       "private": false,
1817       "static": false,
1818       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1819       "linenr": 289,
1820       "html_filename": "DragDrop.html",
1821       "href": "DragDrop.html#Ext-dd-DragDrop-property-xTicks",
1822       "shortDoc": "Array of pixel locations the element will snap to if we specified a\nhorizontal graduation/interval.  This array is ge..."
1823     },
1824     {
1825       "tagname": "property",
1826       "name": "yTicks",
1827       "member": "Ext.dd.DragDrop",
1828       "type": "[int]",
1829       "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",
1830       "private": false,
1831       "static": false,
1832       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1833       "linenr": 297,
1834       "html_filename": "DragDrop.html",
1835       "href": "DragDrop.html#Ext-dd-DragDrop-property-yTicks",
1836       "shortDoc": "Array of pixel locations the element will snap to if we specified a\nvertical graduation/interval.  This array is gene..."
1837     }
1838   ],
1839   "event": [
1840
1841   ],
1842   "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DropZone.js",
1843   "linenr": 1,
1844   "html_filename": "DropZone.html",
1845   "href": "DropZone.html#Ext-dd-DropZone",
1846   "cssVar": [
1847
1848   ],
1849   "cssMixin": [
1850
1851   ],
1852   "component": false,
1853   "superclasses": [
1854     "Ext.dd.DragDrop",
1855     "Ext.dd.DDTarget",
1856     "Ext.dd.DropTarget"
1857   ],
1858   "subclasses": [
1859     "Ext.grid.header.DropZone",
1860     "Ext.view.DropZone"
1861   ],
1862   "mixedInto": [
1863
1864   ],
1865   "allMixins": [
1866
1867   ]
1868 });