Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.dd.DragDrop.js
1 Ext.data.JsonP.Ext_dd_DragDrop({
2   "tagname": "class",
3   "name": "Ext.dd.DragDrop",
4   "doc": "<p>Defines the interface and base operation of items that that can be\ndragged or can be drop targets.  It was designed to be extended, overriding\nthe event handlers for startDrag, onDrag, onDragOver and onDragOut.\nUp to three html elements can be associated with a DragDrop instance:</p>\n\n<ul>\n<li>linked element: the element that is passed into the constructor.\nThis is the element which defines the boundaries for interaction with\nother DragDrop objects.</li>\n<li>handle element(s): The drag operation only occurs if the element that\nwas clicked matches a handle element.  By default this is the linked\nelement, but there are times that you will want only a portion of the\nlinked element to initiate the drag operation, and the setHandleElId()\nmethod provides a way to define this.</li>\n<li>drag element: this represents the element that would be moved along\nwith the cursor during a drag operation.  By default, this is the linked\nelement itself as in <a href=\"#/api/Ext.dd.DD\" rel=\"Ext.dd.DD\" class=\"docClass\">Ext.dd.DD</a>.  setDragElId() lets you define\na separate element that would be moved, as in <a href=\"#/api/Ext.dd.DDProxy\" rel=\"Ext.dd.DDProxy\" class=\"docClass\">Ext.dd.DDProxy</a>.\n</li>\n</ul>\n\n\n<p>This class should not be instantiated until the onload event to ensure that\nthe associated elements are available.\nThe following would define a DragDrop obj that would interact with any\nother DragDrop obj in the \"group1\" group:</p>\n\n<pre> dd = new Ext.dd.DragDrop(\"div1\", \"group1\");\n</pre>\n\n\n<p>Since none of the event handlers have been implemented, nothing would\nactually happen if you were to run the code above.  Normally you would\noverride this class or one of the default implementations, but you can\nalso override the methods you want on an instance of the class...</p>\n\n<pre> dd.onDragDrop = function(e, id) {\n &nbsp;&nbsp;alert(\"dd was dropped on \" + id);\n }\n</pre>\n\n",
5   "extends": null,
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   ],
20   "method": [
21     {
22       "tagname": "method",
23       "name": "DragDrop",
24       "member": "Ext.dd.DragDrop",
25       "doc": "\n",
26       "params": [
27         {
28           "type": "String",
29           "name": "id",
30           "doc": "<p>of the element that is linked to this instance</p>\n",
31           "optional": false
32         },
33         {
34           "type": "String",
35           "name": "sGroup",
36           "doc": "<p>the group of related DragDrop objects</p>\n",
37           "optional": false
38         },
39         {
40           "type": "object",
41           "name": "config",
42           "doc": "<p>an object containing configurable attributes</p>\n\n<pre><code>           Valid properties for DragDrop:\n               padding, isTarget, maintainOffset, primaryButtonOnly\n</code></pre>\n",
43           "optional": false
44         }
45       ],
46       "return": {
47         "type": "void",
48         "doc": "\n"
49       },
50       "private": false,
51       "static": false,
52       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
53       "linenr": 10,
54       "html_filename": "DragDrop.html",
55       "href": "DragDrop.html#Ext-dd-DragDrop-method-constructor",
56       "shortDoc": "\n"
57     },
58     {
59       "tagname": "method",
60       "name": "addInvalidHandleClass",
61       "member": "Ext.dd.DragDrop",
62       "doc": "<p>Lets you specify a css class of elements that will not initiate a drag</p>\n",
63       "params": [
64         {
65           "type": "string",
66           "name": "cssClass",
67           "doc": "<p>the class of the elements you wish to ignore</p>\n",
68           "optional": false
69         }
70       ],
71       "return": {
72         "type": "void",
73         "doc": "\n"
74       },
75       "private": false,
76       "static": false,
77       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
78       "linenr": 894,
79       "html_filename": "DragDrop.html",
80       "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleClass",
81       "shortDoc": "<p>Lets you specify a css class of elements that will not initiate a drag</p>\n"
82     },
83     {
84       "tagname": "method",
85       "name": "addInvalidHandleId",
86       "member": "Ext.dd.DragDrop",
87       "doc": "<p>Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag</p>\n",
88       "params": [
89         {
90           "type": "string",
91           "name": "id",
92           "doc": "<p>the element id of the element you wish to ignore</p>\n",
93           "optional": false
94         }
95       ],
96       "return": {
97         "type": "void",
98         "doc": "\n"
99       },
100       "private": false,
101       "static": false,
102       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
103       "linenr": 881,
104       "html_filename": "DragDrop.html",
105       "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleId",
106       "shortDoc": "<p>Lets you to specify an element id for a child of a drag handle\nthat should not initiate a drag</p>\n"
107     },
108     {
109       "tagname": "method",
110       "name": "addInvalidHandleType",
111       "member": "Ext.dd.DragDrop",
112       "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",
113       "params": [
114         {
115           "type": "string",
116           "name": "tagName",
117           "doc": "<p>the type of element to exclude</p>\n",
118           "optional": false
119         }
120       ],
121       "return": {
122         "type": "void",
123         "doc": "\n"
124       },
125       "private": false,
126       "static": false,
127       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
128       "linenr": 869,
129       "html_filename": "DragDrop.html",
130       "href": "DragDrop.html#Ext-dd-DragDrop-method-addInvalidHandleType",
131       "shortDoc": "Allows you to specify a tag name that should not start a drag operation\nwhen clicked.  This is designed to facilitate..."
132     },
133     {
134       "tagname": "method",
135       "name": "addToGroup",
136       "member": "Ext.dd.DragDrop",
137       "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",
138       "params": [
139         {
140           "type": "Object",
141           "name": "sGroup",
142           "doc": "<p>{string} the name of the group</p>\n",
143           "optional": false
144         }
145       ],
146       "return": {
147         "type": "void",
148         "doc": "\n"
149       },
150       "private": false,
151       "static": false,
152       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
153       "linenr": 730,
154       "html_filename": "DragDrop.html",
155       "href": "DragDrop.html#Ext-dd-DragDrop-method-addToGroup",
156       "shortDoc": "Add this instance to a group of related drag/drop objects.  All\ninstances belong to at least one group, and can belon..."
157     },
158     {
159       "tagname": "method",
160       "name": "applyConfig",
161       "member": "Ext.dd.DragDrop",
162       "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",
163       "params": [
164
165       ],
166       "return": {
167         "type": "void",
168         "doc": "\n"
169       },
170       "private": false,
171       "static": false,
172       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
173       "linenr": 635,
174       "html_filename": "DragDrop.html",
175       "href": "DragDrop.html#Ext-dd-DragDrop-method-applyConfig",
176       "shortDoc": "Applies the configuration parameters that were passed into the constructor.\nThis is supposed to happen at each level ..."
177     },
178     {
179       "tagname": "method",
180       "name": "clearConstraints",
181       "member": "Ext.dd.DragDrop",
182       "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",
183       "params": [
184
185       ],
186       "return": {
187         "type": "void",
188         "doc": "\n"
189       },
190       "private": false,
191       "static": false,
192       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
193       "linenr": 1049,
194       "html_filename": "DragDrop.html",
195       "href": "DragDrop.html#Ext-dd-DragDrop-method-clearConstraints",
196       "shortDoc": "Clears any constraints applied to this instance.  Also clears ticks\nsince they can't exist independent of a constrain..."
197     },
198     {
199       "tagname": "method",
200       "name": "clearTicks",
201       "member": "Ext.dd.DragDrop",
202       "doc": "<p>Clears any tick interval defined for this instance</p>\n",
203       "params": [
204
205       ],
206       "return": {
207         "type": "void",
208         "doc": "\n"
209       },
210       "private": false,
211       "static": false,
212       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
213       "linenr": 1060,
214       "html_filename": "DragDrop.html",
215       "href": "DragDrop.html#Ext-dd-DragDrop-method-clearTicks",
216       "shortDoc": "<p>Clears any tick interval defined for this instance</p>\n"
217     },
218     {
219       "tagname": "method",
220       "name": "constrainTo",
221       "member": "Ext.dd.DragDrop",
222       "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",
223       "params": [
224         {
225           "type": "Mixed",
226           "name": "constrainTo",
227           "doc": "<p>The element to constrain to.</p>\n",
228           "optional": false
229         },
230         {
231           "type": "Object/Number",
232           "name": "pad",
233           "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",
234           "optional": true
235         },
236         {
237           "type": "Boolean",
238           "name": "inContent",
239           "doc": "<p>(optional) Constrain the draggable in the content box of the element (inside padding and borders)</p>\n",
240           "optional": true
241         }
242       ],
243       "return": {
244         "type": "void",
245         "doc": "\n"
246       },
247       "private": false,
248       "static": false,
249       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
250       "linenr": 493,
251       "html_filename": "DragDrop.html",
252       "href": "DragDrop.html#Ext-dd-DragDrop-method-constrainTo",
253       "shortDoc": "Initializes the drag drop object's constraints to restrict movement to a certain element.\n\nUsage:\n\n var dd = new Ext...."
254     },
255     {
256       "tagname": "method",
257       "name": "endDrag",
258       "member": "Ext.dd.DragDrop",
259       "doc": "<p>Fired when we are done dragging the object</p>\n",
260       "params": [
261         {
262           "type": "Event",
263           "name": "e",
264           "doc": "<p>the mouseup event</p>\n",
265           "optional": false
266         }
267       ],
268       "return": {
269         "type": "void",
270         "doc": "\n"
271       },
272       "private": false,
273       "static": false,
274       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
275       "linenr": 445,
276       "html_filename": "DragDrop.html",
277       "href": "DragDrop.html#Ext-dd-DragDrop-method-endDrag",
278       "shortDoc": "<p>Fired when we are done dragging the object</p>\n"
279     },
280     {
281       "tagname": "method",
282       "name": "getDragEl",
283       "member": "Ext.dd.DragDrop",
284       "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",
285       "params": [
286
287       ],
288       "return": {
289         "type": "HTMLElement",
290         "doc": "<p>the html element</p>\n"
291       },
292       "private": false,
293       "static": false,
294       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
295       "linenr": 563,
296       "html_filename": "DragDrop.html",
297       "href": "DragDrop.html#Ext-dd-DragDrop-method-getDragEl",
298       "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..."
299     },
300     {
301       "tagname": "method",
302       "name": "getEl",
303       "member": "Ext.dd.DragDrop",
304       "doc": "<p>Returns a reference to the linked element</p>\n",
305       "params": [
306
307       ],
308       "return": {
309         "type": "HTMLElement",
310         "doc": "<p>the html element</p>\n"
311       },
312       "private": false,
313       "static": false,
314       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
315       "linenr": 550,
316       "html_filename": "DragDrop.html",
317       "href": "DragDrop.html#Ext-dd-DragDrop-method-getEl",
318       "shortDoc": "<p>Returns a reference to the linked element</p>\n"
319     },
320     {
321       "tagname": "method",
322       "name": "init",
323       "member": "Ext.dd.DragDrop",
324       "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",
325       "params": [
326         {
327           "type": "Object",
328           "name": "id",
329           "doc": "<p>the id of the linked element</p>\n",
330           "optional": false
331         },
332         {
333           "type": "String",
334           "name": "sGroup",
335           "doc": "<p>the group of related items</p>\n",
336           "optional": false
337         },
338         {
339           "type": "object",
340           "name": "config",
341           "doc": "<p>configuration attributes</p>\n",
342           "optional": false
343         }
344       ],
345       "return": {
346         "type": "void",
347         "doc": "\n"
348       },
349       "private": false,
350       "static": false,
351       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
352       "linenr": 574,
353       "html_filename": "DragDrop.html",
354       "href": "DragDrop.html#Ext-dd-DragDrop-method-init",
355       "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"
356     },
357     {
358       "tagname": "method",
359       "name": "initTarget",
360       "member": "Ext.dd.DragDrop",
361       "doc": "<p>Initializes Targeting functionality only... the object does not\nget a mousedown handler.</p>\n",
362       "params": [
363         {
364           "type": "Object",
365           "name": "id",
366           "doc": "<p>the id of the linked element</p>\n",
367           "optional": false
368         },
369         {
370           "type": "String",
371           "name": "sGroup",
372           "doc": "<p>the group of related items</p>\n",
373           "optional": false
374         },
375         {
376           "type": "object",
377           "name": "config",
378           "doc": "<p>configuration attributes</p>\n",
379           "optional": false
380         }
381       ],
382       "return": {
383         "type": "void",
384         "doc": "\n"
385       },
386       "private": false,
387       "static": false,
388       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
389       "linenr": 588,
390       "html_filename": "DragDrop.html",
391       "href": "DragDrop.html#Ext-dd-DragDrop-method-initTarget",
392       "shortDoc": "<p>Initializes Targeting functionality only... the object does not\nget a mousedown handler.</p>\n"
393     },
394     {
395       "tagname": "method",
396       "name": "isLocked",
397       "member": "Ext.dd.DragDrop",
398       "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",
399       "params": [
400
401       ],
402       "return": {
403         "type": "boolean",
404         "doc": "<p>true if this obj or all drag/drop is locked, else\nfalse</p>\n"
405       },
406       "private": false,
407       "static": false,
408       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
409       "linenr": 814,
410       "html_filename": "DragDrop.html",
411       "href": "DragDrop.html#Ext-dd-DragDrop-method-isLocked",
412       "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..."
413     },
414     {
415       "tagname": "method",
416       "name": "isValidHandleChild",
417       "member": "Ext.dd.DragDrop",
418       "doc": "<p>Checks the tag exclusion list to see if this click should be ignored</p>\n",
419       "params": [
420         {
421           "type": "HTMLElement",
422           "name": "node",
423           "doc": "<p>the HTMLElement to evaluate</p>\n",
424           "optional": false
425         }
426       ],
427       "return": {
428         "type": "boolean",
429         "doc": "<p>true if this is a valid tag type, false if not</p>\n"
430       },
431       "private": false,
432       "static": false,
433       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
434       "linenr": 940,
435       "html_filename": "DragDrop.html",
436       "href": "DragDrop.html#Ext-dd-DragDrop-method-isValidHandleChild",
437       "shortDoc": "<p>Checks the tag exclusion list to see if this click should be ignored</p>\n"
438     },
439     {
440       "tagname": "method",
441       "name": "lock",
442       "member": "Ext.dd.DragDrop",
443       "doc": "<p>Lock this instance</p>\n",
444       "params": [
445
446       ],
447       "return": {
448         "type": "void",
449         "doc": "\n"
450       },
451       "private": false,
452       "static": false,
453       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
454       "linenr": 177,
455       "html_filename": "DragDrop.html",
456       "href": "DragDrop.html#Ext-dd-DragDrop-method-lock",
457       "shortDoc": "<p>Lock this instance</p>\n"
458     },
459     {
460       "tagname": "method",
461       "name": "onAvailable",
462       "member": "Ext.dd.DragDrop",
463       "doc": "<p>Override the onAvailable method to do what is needed after the initial\nposition was determined.</p>\n",
464       "params": [
465
466       ],
467       "return": {
468         "type": "void",
469         "doc": "\n"
470       },
471       "private": false,
472       "static": false,
473       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
474       "linenr": 474,
475       "html_filename": "DragDrop.html",
476       "href": "DragDrop.html#Ext-dd-DragDrop-method-onAvailable",
477       "shortDoc": "<p>Override the onAvailable method to do what is needed after the initial\nposition was determined.</p>\n"
478     },
479     {
480       "tagname": "method",
481       "name": "onDrag",
482       "member": "Ext.dd.DragDrop",
483       "doc": "<p>Abstract method called during the onMouseMove event while dragging an\nobject.</p>\n",
484       "params": [
485         {
486           "type": "Event",
487           "name": "e",
488           "doc": "<p>the mousemove event</p>\n",
489           "optional": false
490         }
491       ],
492       "return": {
493         "type": "void",
494         "doc": "\n"
495       },
496       "private": false,
497       "static": false,
498       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
499       "linenr": 358,
500       "html_filename": "DragDrop.html",
501       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDrag",
502       "shortDoc": "<p>Abstract method called during the onMouseMove event while dragging an\nobject.</p>\n"
503     },
504     {
505       "tagname": "method",
506       "name": "onDragDrop",
507       "member": "Ext.dd.DragDrop",
508       "doc": "<p>Abstract method called when this item is dropped on another DragDrop\nobj</p>\n",
509       "params": [
510         {
511           "type": "Event",
512           "name": "e",
513           "doc": "<p>the mouseup event</p>\n",
514           "optional": false
515         },
516         {
517           "type": "String|DragDrop[]",
518           "name": "id",
519           "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",
520           "optional": false
521         }
522       ],
523       "return": {
524         "type": "void",
525         "doc": "\n"
526       },
527       "private": false,
528       "static": false,
529       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
530       "linenr": 419,
531       "html_filename": "DragDrop.html",
532       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragDrop",
533       "shortDoc": "<p>Abstract method called when this item is dropped on another DragDrop\nobj</p>\n"
534     },
535     {
536       "tagname": "method",
537       "name": "onDragEnter",
538       "member": "Ext.dd.DragDrop",
539       "doc": "<p>Abstract method called when this element fist begins hovering over\nanother DragDrop obj</p>\n",
540       "params": [
541         {
542           "type": "Event",
543           "name": "e",
544           "doc": "<p>the mousemove event</p>\n",
545           "optional": false
546         },
547         {
548           "type": "String|DragDrop[]",
549           "name": "id",
550           "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",
551           "optional": false
552         }
553       ],
554       "return": {
555         "type": "void",
556         "doc": "\n"
557       },
558       "private": false,
559       "static": false,
560       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
561       "linenr": 366,
562       "html_filename": "DragDrop.html",
563       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragEnter",
564       "shortDoc": "<p>Abstract method called when this element fist begins hovering over\nanother DragDrop obj</p>\n"
565     },
566     {
567       "tagname": "method",
568       "name": "onDragOut",
569       "member": "Ext.dd.DragDrop",
570       "doc": "<p>Abstract method called when we are no longer hovering over an element</p>\n",
571       "params": [
572         {
573           "type": "Event",
574           "name": "e",
575           "doc": "<p>the mousemove event</p>\n",
576           "optional": false
577         },
578         {
579           "type": "String|DragDrop[]",
580           "name": "id",
581           "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",
582           "optional": false
583         }
584       ],
585       "return": {
586         "type": "void",
587         "doc": "\n"
588       },
589       "private": false,
590       "static": false,
591       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
592       "linenr": 402,
593       "html_filename": "DragDrop.html",
594       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragOut",
595       "shortDoc": "<p>Abstract method called when we are no longer hovering over an element</p>\n"
596     },
597     {
598       "tagname": "method",
599       "name": "onDragOver",
600       "member": "Ext.dd.DragDrop",
601       "doc": "<p>Abstract method called when this element is hovering over another\nDragDrop obj</p>\n",
602       "params": [
603         {
604           "type": "Event",
605           "name": "e",
606           "doc": "<p>the mousemove event</p>\n",
607           "optional": false
608         },
609         {
610           "type": "String|DragDrop[]",
611           "name": "id",
612           "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",
613           "optional": false
614         }
615       ],
616       "return": {
617         "type": "void",
618         "doc": "\n"
619       },
620       "private": false,
621       "static": false,
622       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
623       "linenr": 384,
624       "html_filename": "DragDrop.html",
625       "href": "DragDrop.html#Ext-dd-DragDrop-method-onDragOver",
626       "shortDoc": "<p>Abstract method called when this element is hovering over another\nDragDrop obj</p>\n"
627     },
628     {
629       "tagname": "method",
630       "name": "onInvalidDrop",
631       "member": "Ext.dd.DragDrop",
632       "doc": "<p>Abstract method called when this item is dropped on an area with no\ndrop target</p>\n",
633       "params": [
634         {
635           "type": "Event",
636           "name": "e",
637           "doc": "<p>the mouseup event</p>\n",
638           "optional": false
639         }
640       ],
641       "return": {
642         "type": "void",
643         "doc": "\n"
644       },
645       "private": false,
646       "static": false,
647       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
648       "linenr": 430,
649       "html_filename": "DragDrop.html",
650       "href": "DragDrop.html#Ext-dd-DragDrop-method-onInvalidDrop",
651       "shortDoc": "<p>Abstract method called when this item is dropped on an area with no\ndrop target</p>\n"
652     },
653     {
654       "tagname": "method",
655       "name": "onMouseDown",
656       "member": "Ext.dd.DragDrop",
657       "doc": "<p>Event handler that fires when a drag/drop obj gets a mousedown</p>\n",
658       "params": [
659         {
660           "type": "Event",
661           "name": "e",
662           "doc": "<p>the mousedown event</p>\n",
663           "optional": false
664         }
665       ],
666       "return": {
667         "type": "void",
668         "doc": "\n"
669       },
670       "private": false,
671       "static": false,
672       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
673       "linenr": 460,
674       "html_filename": "DragDrop.html",
675       "href": "DragDrop.html#Ext-dd-DragDrop-method-onMouseDown",
676       "shortDoc": "<p>Event handler that fires when a drag/drop obj gets a mousedown</p>\n"
677     },
678     {
679       "tagname": "method",
680       "name": "onMouseUp",
681       "member": "Ext.dd.DragDrop",
682       "doc": "<p>Event handler that fires when a drag/drop obj gets a mouseup</p>\n",
683       "params": [
684         {
685           "type": "Event",
686           "name": "e",
687           "doc": "<p>the mouseup event</p>\n",
688           "optional": false
689         }
690       ],
691       "return": {
692         "type": "void",
693         "doc": "\n"
694       },
695       "private": false,
696       "static": false,
697       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
698       "linenr": 467,
699       "html_filename": "DragDrop.html",
700       "href": "DragDrop.html#Ext-dd-DragDrop-method-onMouseUp",
701       "shortDoc": "<p>Event handler that fires when a drag/drop obj gets a mouseup</p>\n"
702     },
703     {
704       "tagname": "method",
705       "name": "removeFromGroup",
706       "member": "Ext.dd.DragDrop",
707       "doc": "<p>Remove's this instance from the supplied interaction group</p>\n",
708       "params": [
709         {
710           "type": "string",
711           "name": "sGroup",
712           "doc": "<p>The group to drop</p>\n",
713           "optional": false
714         }
715       ],
716       "return": {
717         "type": "void",
718         "doc": "\n"
719       },
720       "private": false,
721       "static": false,
722       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
723       "linenr": 742,
724       "html_filename": "DragDrop.html",
725       "href": "DragDrop.html#Ext-dd-DragDrop-method-removeFromGroup",
726       "shortDoc": "<p>Remove's this instance from the supplied interaction group</p>\n"
727     },
728     {
729       "tagname": "method",
730       "name": "removeInvalidHandleClass",
731       "member": "Ext.dd.DragDrop",
732       "doc": "<p>Unsets an invalid css class</p>\n",
733       "params": [
734         {
735           "type": "string",
736           "name": "cssClass",
737           "doc": "<p>the class of the element(s) you wish to\nre-enable</p>\n",
738           "optional": false
739         }
740       ],
741       "return": {
742         "type": "void",
743         "doc": "\n"
744       },
745       "private": false,
746       "static": false,
747       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
748       "linenr": 926,
749       "html_filename": "DragDrop.html",
750       "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleClass",
751       "shortDoc": "<p>Unsets an invalid css class</p>\n"
752     },
753     {
754       "tagname": "method",
755       "name": "removeInvalidHandleId",
756       "member": "Ext.dd.DragDrop",
757       "doc": "<p>Unsets an invalid handle id</p>\n",
758       "params": [
759         {
760           "type": "string",
761           "name": "id",
762           "doc": "<p>the id of the element to re-enable</p>\n",
763           "optional": false
764         }
765       ],
766       "return": {
767         "type": "void",
768         "doc": "\n"
769       },
770       "private": false,
771       "static": false,
772       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
773       "linenr": 914,
774       "html_filename": "DragDrop.html",
775       "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleId",
776       "shortDoc": "<p>Unsets an invalid handle id</p>\n"
777     },
778     {
779       "tagname": "method",
780       "name": "removeInvalidHandleType",
781       "member": "Ext.dd.DragDrop",
782       "doc": "<p>Unsets an excluded tag name set by addInvalidHandleType</p>\n",
783       "params": [
784         {
785           "type": "string",
786           "name": "tagName",
787           "doc": "<p>the type of element to unexclude</p>\n",
788           "optional": false
789         }
790       ],
791       "return": {
792         "type": "void",
793         "doc": "\n"
794       },
795       "private": false,
796       "static": false,
797       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
798       "linenr": 903,
799       "html_filename": "DragDrop.html",
800       "href": "DragDrop.html#Ext-dd-DragDrop-method-removeInvalidHandleType",
801       "shortDoc": "<p>Unsets an excluded tag name set by addInvalidHandleType</p>\n"
802     },
803     {
804       "tagname": "method",
805       "name": "resetConstraints",
806       "member": "Ext.dd.DragDrop",
807       "doc": "<p>resetConstraints must be called if you manually reposition a dd element.</p>\n",
808       "params": [
809         {
810           "type": "boolean",
811           "name": "maintainOffset",
812           "doc": "\n",
813           "optional": false
814         }
815       ],
816       "return": {
817         "type": "void",
818         "doc": "\n"
819       },
820       "private": false,
821       "static": false,
822       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
823       "linenr": 1093,
824       "html_filename": "DragDrop.html",
825       "href": "DragDrop.html#Ext-dd-DragDrop-method-resetConstraints",
826       "shortDoc": "<p>resetConstraints must be called if you manually reposition a dd element.</p>\n"
827     },
828     {
829       "tagname": "method",
830       "name": "setDragElId",
831       "member": "Ext.dd.DragDrop",
832       "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",
833       "params": [
834         {
835           "type": "Object",
836           "name": "id",
837           "doc": "<p>{string} the id of the element that will be used to initiate the drag</p>\n",
838           "optional": false
839         }
840       ],
841       "return": {
842         "type": "void",
843         "doc": "\n"
844       },
845       "private": false,
846       "static": false,
847       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
848       "linenr": 755,
849       "html_filename": "DragDrop.html",
850       "href": "DragDrop.html#Ext-dd-DragDrop-method-setDragElId",
851       "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"
852     },
853     {
854       "tagname": "method",
855       "name": "setHandleElId",
856       "member": "Ext.dd.DragDrop",
857       "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",
858       "params": [
859         {
860           "type": "Object",
861           "name": "id",
862           "doc": "<p>{string} the id of the element that will be used to\ninitiate the drag.</p>\n",
863           "optional": false
864         }
865       ],
866       "return": {
867         "type": "void",
868         "doc": "\n"
869       },
870       "private": false,
871       "static": false,
872       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
873       "linenr": 765,
874       "html_filename": "DragDrop.html",
875       "href": "DragDrop.html#Ext-dd-DragDrop-method-setHandleElId",
876       "shortDoc": "Allows you to specify a child of the linked element that should be\nused to initiate the drag operation.  An example o..."
877     },
878     {
879       "tagname": "method",
880       "name": "setInitPosition",
881       "member": "Ext.dd.DragDrop",
882       "doc": "<p>Stores the initial placement of the linked element.</p>\n",
883       "params": [
884         {
885           "type": "int",
886           "name": "diffX",
887           "doc": "<p>the X offset, default 0</p>\n",
888           "optional": false
889         },
890         {
891           "type": "int",
892           "name": "diffY",
893           "doc": "<p>the Y offset, default 0</p>\n",
894           "optional": false
895         }
896       ],
897       "return": {
898         "type": "void",
899         "doc": "\n"
900       },
901       "private": false,
902       "static": false,
903       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
904       "linenr": 688,
905       "html_filename": "DragDrop.html",
906       "href": "DragDrop.html#Ext-dd-DragDrop-method-setInitPosition",
907       "shortDoc": "<p>Stores the initial placement of the linked element.</p>\n"
908     },
909     {
910       "tagname": "method",
911       "name": "setOuterHandleElId",
912       "member": "Ext.dd.DragDrop",
913       "doc": "<p>Allows you to set an element outside of the linked element as a drag\nhandle</p>\n",
914       "params": [
915         {
916           "type": "Object",
917           "name": "id",
918           "doc": "<p>the id of the element that will be used to initiate the drag</p>\n",
919           "optional": false
920         }
921       ],
922       "return": {
923         "type": "void",
924         "doc": "\n"
925       },
926       "private": false,
927       "static": false,
928       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
929       "linenr": 784,
930       "html_filename": "DragDrop.html",
931       "href": "DragDrop.html#Ext-dd-DragDrop-method-setOuterHandleElId",
932       "shortDoc": "<p>Allows you to set an element outside of the linked element as a drag\nhandle</p>\n"
933     },
934     {
935       "tagname": "method",
936       "name": "setPadding",
937       "member": "Ext.dd.DragDrop",
938       "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",
939       "params": [
940         {
941           "type": "int",
942           "name": "iTop",
943           "doc": "<p>Top pad</p>\n",
944           "optional": false
945         },
946         {
947           "type": "int",
948           "name": "iRight",
949           "doc": "<p>Right pad</p>\n",
950           "optional": false
951         },
952         {
953           "type": "int",
954           "name": "iBot",
955           "doc": "<p>Bot pad</p>\n",
956           "optional": false
957         },
958         {
959           "type": "int",
960           "name": "iLeft",
961           "doc": "<p>Left pad</p>\n",
962           "optional": false
963         }
964       ],
965       "return": {
966         "type": "void",
967         "doc": "\n"
968       },
969       "private": false,
970       "static": false,
971       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
972       "linenr": 665,
973       "html_filename": "DragDrop.html",
974       "href": "DragDrop.html#Ext-dd-DragDrop-method-setPadding",
975       "shortDoc": "Configures the padding for the target zone in px.  Effectively expands\n(or reduces) the virtual object size for targe..."
976     },
977     {
978       "tagname": "method",
979       "name": "setXConstraint",
980       "member": "Ext.dd.DragDrop",
981       "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",
982       "params": [
983         {
984           "type": "int",
985           "name": "iLeft",
986           "doc": "<p>the number of pixels the element can move to the left</p>\n",
987           "optional": false
988         },
989         {
990           "type": "int",
991           "name": "iRight",
992           "doc": "<p>the number of pixels the element can move to the\nright</p>\n",
993           "optional": false
994         },
995         {
996           "type": "int",
997           "name": "iTickSize",
998           "doc": "<p>optional parameter for specifying that the\nelement\nshould move iTickSize pixels at a time.</p>\n",
999           "optional": false
1000         }
1001       ],
1002       "return": {
1003         "type": "void",
1004         "doc": "\n"
1005       },
1006       "private": false,
1007       "static": false,
1008       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1009       "linenr": 1026,
1010       "html_filename": "DragDrop.html",
1011       "href": "DragDrop.html#Ext-dd-DragDrop-method-setXConstraint",
1012       "shortDoc": "By default, the element can be dragged any place on the screen.  Use\nthis method to limit the horizontal travel of th..."
1013     },
1014     {
1015       "tagname": "method",
1016       "name": "setYConstraint",
1017       "member": "Ext.dd.DragDrop",
1018       "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",
1019       "params": [
1020         {
1021           "type": "int",
1022           "name": "iUp",
1023           "doc": "<p>the number of pixels the element can move up</p>\n",
1024           "optional": false
1025         },
1026         {
1027           "type": "int",
1028           "name": "iDown",
1029           "doc": "<p>the number of pixels the element can move down</p>\n",
1030           "optional": false
1031         },
1032         {
1033           "type": "int",
1034           "name": "iTickSize",
1035           "doc": "<p>optional parameter for specifying that the\nelement should move iTickSize pixels at a time.</p>\n",
1036           "optional": false
1037         }
1038       ],
1039       "return": {
1040         "type": "void",
1041         "doc": "\n"
1042       },
1043       "private": false,
1044       "static": false,
1045       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1046       "linenr": 1071,
1047       "html_filename": "DragDrop.html",
1048       "href": "DragDrop.html#Ext-dd-DragDrop-method-setYConstraint",
1049       "shortDoc": "By default, the element can be dragged any place on the screen.  Set\nthis to limit the vertical travel of the element..."
1050     },
1051     {
1052       "tagname": "method",
1053       "name": "startDrag",
1054       "member": "Ext.dd.DragDrop",
1055       "doc": "<p>Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met.</p>\n",
1056       "params": [
1057         {
1058           "type": "int",
1059           "name": "X",
1060           "doc": "<p>click location</p>\n",
1061           "optional": false
1062         },
1063         {
1064           "type": "int",
1065           "name": "Y",
1066           "doc": "<p>click location</p>\n",
1067           "optional": false
1068         }
1069       ],
1070       "return": {
1071         "type": "void",
1072         "doc": "\n"
1073       },
1074       "private": false,
1075       "static": false,
1076       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1077       "linenr": 342,
1078       "html_filename": "DragDrop.html",
1079       "href": "DragDrop.html#Ext-dd-DragDrop-method-startDrag",
1080       "shortDoc": "<p>Abstract method called after a drag/drop object is clicked\nand the drag or mousedown time thresholds have beeen met.</p>\n"
1081     },
1082     {
1083       "tagname": "method",
1084       "name": "toString",
1085       "member": "Ext.dd.DragDrop",
1086       "doc": "<p>toString method</p>\n",
1087       "params": [
1088
1089       ],
1090       "return": {
1091         "type": "string",
1092         "doc": "<p>string representation of the dd obj</p>\n"
1093       },
1094       "private": false,
1095       "static": false,
1096       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1097       "linenr": 1160,
1098       "html_filename": "DragDrop.html",
1099       "href": "DragDrop.html#Ext-dd-DragDrop-method-toString",
1100       "shortDoc": "<p>toString method</p>\n"
1101     },
1102     {
1103       "tagname": "method",
1104       "name": "unlock",
1105       "member": "Ext.dd.DragDrop",
1106       "doc": "<p>Unlock this instace</p>\n",
1107       "params": [
1108
1109       ],
1110       "return": {
1111         "type": "void",
1112         "doc": "\n"
1113       },
1114       "private": false,
1115       "static": false,
1116       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1117       "linenr": 193,
1118       "html_filename": "DragDrop.html",
1119       "href": "DragDrop.html#Ext-dd-DragDrop-method-unlock",
1120       "shortDoc": "<p>Unlock this instace</p>\n"
1121     },
1122     {
1123       "tagname": "method",
1124       "name": "unreg",
1125       "member": "Ext.dd.DragDrop",
1126       "doc": "<p>Remove all drag and drop hooks for this element</p>\n",
1127       "params": [
1128
1129       ],
1130       "return": {
1131         "type": "void",
1132         "doc": "\n"
1133       },
1134       "private": false,
1135       "static": false,
1136       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1137       "linenr": 800,
1138       "html_filename": "DragDrop.html",
1139       "href": "DragDrop.html#Ext-dd-DragDrop-method-unreg",
1140       "shortDoc": "<p>Remove all drag and drop hooks for this element</p>\n"
1141     }
1142   ],
1143   "property": [
1144     {
1145       "tagname": "property",
1146       "name": "available",
1147       "member": "Ext.dd.DragDrop",
1148       "type": "boolean",
1149       "doc": "<p>The available property is false until the linked dom element is accessible.</p>\n",
1150       "private": false,
1151       "static": false,
1152       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1153       "linenr": 315,
1154       "html_filename": "DragDrop.html",
1155       "href": "DragDrop.html#Ext-dd-DragDrop-property-available"
1156     },
1157     {
1158       "tagname": "property",
1159       "name": "config",
1160       "member": "Ext.dd.DragDrop",
1161       "type": "object",
1162       "doc": "<p>Configuration attributes passed into the constructor</p>\n",
1163       "private": false,
1164       "static": false,
1165       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1166       "linenr": 81,
1167       "html_filename": "DragDrop.html",
1168       "href": "DragDrop.html#Ext-dd-DragDrop-property-config"
1169     },
1170     {
1171       "tagname": "property",
1172       "name": "defaultPadding",
1173       "member": "Ext.dd.DragDrop",
1174       "type": "Object",
1175       "doc": "<p>Provides default constraint padding to \"constrainTo\" elements (defaults to {left: 0, right:0, top:0, bottom:0}).</p>\n",
1176       "private": false,
1177       "static": false,
1178       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1179       "linenr": 482,
1180       "html_filename": "DragDrop.html",
1181       "href": "DragDrop.html#Ext-dd-DragDrop-property-defaultPadding"
1182     },
1183     {
1184       "tagname": "property",
1185       "name": "groups",
1186       "member": "Ext.dd.DragDrop",
1187       "type": "object",
1188       "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",
1189       "private": false,
1190       "static": false,
1191       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1192       "linenr": 158,
1193       "html_filename": "DragDrop.html",
1194       "href": "DragDrop.html#Ext-dd-DragDrop-property-groups",
1195       "shortDoc": "The group defines a logical collection of DragDrop objects that are\nrelated.  Instances only get events when interact..."
1196     },
1197     {
1198       "tagname": "property",
1199       "name": "hasOuterHandles",
1200       "member": "Ext.dd.DragDrop",
1201       "type": "boolean",
1202       "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",
1203       "private": false,
1204       "static": false,
1205       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1206       "linenr": 322,
1207       "html_filename": "DragDrop.html",
1208       "href": "DragDrop.html#Ext-dd-DragDrop-property-hasOuterHandles",
1209       "shortDoc": "By default, drags can only be initiated if the mousedown occurs in the\nregion the linked element is.  This is done in..."
1210     },
1211     {
1212       "tagname": "property",
1213       "name": "id",
1214       "member": "Ext.dd.DragDrop",
1215       "type": "String",
1216       "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",
1217       "private": false,
1218       "static": false,
1219       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1220       "linenr": 71,
1221       "html_filename": "DragDrop.html",
1222       "href": "DragDrop.html#Ext-dd-DragDrop-property-id",
1223       "shortDoc": "The id of the element associated with this object.  This is what we\nrefer to as the \"linked element\" because the size..."
1224     },
1225     {
1226       "tagname": "property",
1227       "name": "ignoreSelf",
1228       "member": "Ext.dd.DragDrop",
1229       "type": "Boolean",
1230       "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",
1231       "private": false,
1232       "static": false,
1233       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1234       "linenr": 63,
1235       "html_filename": "DragDrop.html",
1236       "href": "DragDrop.html#Ext-dd-DragDrop-property-ignoreSelf",
1237       "shortDoc": "Set to false to enable a DragDrop object to fire drag events while dragging\nover its own Element. Defaults to true - ..."
1238     },
1239     {
1240       "tagname": "property",
1241       "name": "invalidHandleClasses",
1242       "member": "Ext.dd.DragDrop",
1243       "type": "Array",
1244       "doc": "<p>An Array of CSS class names for elements to be considered in valid as drag handles.</p>\n",
1245       "private": false,
1246       "static": false,
1247       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1248       "linenr": 133,
1249       "html_filename": "DragDrop.html",
1250       "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleClasses"
1251     },
1252     {
1253       "tagname": "property",
1254       "name": "invalidHandleIds",
1255       "member": "Ext.dd.DragDrop",
1256       "type": "Object",
1257       "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",
1258       "private": false,
1259       "static": false,
1260       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1261       "linenr": 121,
1262       "html_filename": "DragDrop.html",
1263       "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleIds",
1264       "shortDoc": "An object who's property names identify the IDs of elements to be considered invalid as drag handles.\nA non-null prop..."
1265     },
1266     {
1267       "tagname": "property",
1268       "name": "invalidHandleTypes",
1269       "member": "Ext.dd.DragDrop",
1270       "type": "Object",
1271       "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",
1272       "private": false,
1273       "static": false,
1274       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1275       "linenr": 109,
1276       "html_filename": "DragDrop.html",
1277       "href": "DragDrop.html#Ext-dd-DragDrop-property-invalidHandleTypes",
1278       "shortDoc": "An object who's property names identify HTML tags to be considered invalid as drag handles.\nA non-null property value..."
1279     },
1280     {
1281       "tagname": "property",
1282       "name": "isTarget",
1283       "member": "Ext.dd.DragDrop",
1284       "type": "boolean",
1285       "doc": "<p>By default, all instances can be a drop target.  This can be disabled by\nsetting isTarget to false.</p>\n",
1286       "private": false,
1287       "static": false,
1288       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1289       "linenr": 201,
1290       "html_filename": "DragDrop.html",
1291       "href": "DragDrop.html#Ext-dd-DragDrop-property-isTarget"
1292     },
1293     {
1294       "tagname": "property",
1295       "name": "maintainOffset",
1296       "member": "Ext.dd.DragDrop",
1297       "type": "boolean",
1298       "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",
1299       "private": false,
1300       "static": false,
1301       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1302       "linenr": 279,
1303       "html_filename": "DragDrop.html",
1304       "href": "DragDrop.html#Ext-dd-DragDrop-property-maintainOffset",
1305       "shortDoc": "Maintain offsets when we resetconstraints.  Set to true when you want\nthe position of the element relative to its par..."
1306     },
1307     {
1308       "tagname": "property",
1309       "name": "moveOnly",
1310       "member": "Ext.dd.DragDrop",
1311       "type": "boolean",
1312       "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",
1313       "private": false,
1314       "static": false,
1315       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1316       "linenr": 185,
1317       "html_filename": "DragDrop.html",
1318       "href": "DragDrop.html#Ext-dd-DragDrop-property-moveOnly",
1319       "shortDoc": "When set to true, other DD objects in cooperating DDGroups do not receive\nnotification events when this DD object is ..."
1320     },
1321     {
1322       "tagname": "property",
1323       "name": "padding",
1324       "member": "Ext.dd.DragDrop",
1325       "type": "[int]",
1326       "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",
1327       "private": false,
1328       "static": false,
1329       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1330       "linenr": 209,
1331       "html_filename": "DragDrop.html",
1332       "href": "DragDrop.html#Ext-dd-DragDrop-property-padding",
1333       "shortDoc": "The padding configured for this drag and drop object for calculating\nthe drop zone intersection with this object.\nAn ..."
1334     },
1335     {
1336       "tagname": "property",
1337       "name": "primaryButtonOnly",
1338       "member": "Ext.dd.DragDrop",
1339       "type": "boolean",
1340       "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",
1341       "private": false,
1342       "static": false,
1343       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1344       "linenr": 305,
1345       "html_filename": "DragDrop.html",
1346       "href": "DragDrop.html#Ext-dd-DragDrop-property-primaryButtonOnly",
1347       "shortDoc": "By default the drag and drop instance will only respond to the primary\nbutton click (left button for a right-handed m..."
1348     },
1349     {
1350       "tagname": "property",
1351       "name": "xTicks",
1352       "member": "Ext.dd.DragDrop",
1353       "type": "[int]",
1354       "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",
1355       "private": false,
1356       "static": false,
1357       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1358       "linenr": 289,
1359       "html_filename": "DragDrop.html",
1360       "href": "DragDrop.html#Ext-dd-DragDrop-property-xTicks",
1361       "shortDoc": "Array of pixel locations the element will snap to if we specified a\nhorizontal graduation/interval.  This array is ge..."
1362     },
1363     {
1364       "tagname": "property",
1365       "name": "yTicks",
1366       "member": "Ext.dd.DragDrop",
1367       "type": "[int]",
1368       "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",
1369       "private": false,
1370       "static": false,
1371       "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1372       "linenr": 297,
1373       "html_filename": "DragDrop.html",
1374       "href": "DragDrop.html#Ext-dd-DragDrop-property-yTicks",
1375       "shortDoc": "Array of pixel locations the element will snap to if we specified a\nvertical graduation/interval.  This array is gene..."
1376     }
1377   ],
1378   "event": [
1379
1380   ],
1381   "filename": "/Users/nick/Projects/sencha/SDK/extjs/src/dd/DragDrop.js",
1382   "linenr": 10,
1383   "html_filename": "DragDrop.html",
1384   "href": "DragDrop.html#Ext-dd-DragDrop",
1385   "cssVar": [
1386
1387   ],
1388   "cssMixin": [
1389
1390   ],
1391   "component": false,
1392   "superclasses": [
1393
1394   ],
1395   "subclasses": [
1396     "Ext.dd.DD",
1397     "Ext.dd.DDTarget"
1398   ],
1399   "mixedInto": [
1400
1401   ],
1402   "allMixins": [
1403
1404   ]
1405 });