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