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