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