Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / docs / output / Ext.EventManager.js
1 Ext.data.JsonP.Ext_EventManager({
2   "tagname": "class",
3   "name": "Ext.EventManager",
4   "doc": "<p>Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides\nseveral useful events directly.\nSee <a href=\"#/api/Ext.EventObject\" rel=\"Ext.EventObject\" class=\"docClass\">Ext.EventObject</a> for more details on normalized event objects.</p>\n",
5   "extends": null,
6   "mixins": [
7
8   ],
9   "alternateClassNames": [
10
11   ],
12   "xtype": null,
13   "author": null,
14   "docauthor": null,
15   "singleton": true,
16   "private": false,
17   "cfg": [
18
19   ],
20   "method": [
21     {
22       "tagname": "method",
23       "name": "addListener",
24       "member": "Ext.EventManager",
25       "doc": "<p>Appends an event handler to an element.  The shorthand version <a href=\"#/api/Ext.EventManager-method-on\" rel=\"Ext.EventManager-method-on\" class=\"docClass\">on</a> is equivalent.  Typically you will\nuse <a href=\"#/api/Ext.core.Element-method-addListener\" rel=\"Ext.core.Element-method-addListener\" class=\"docClass\">Ext.core.Element.addListener</a> directly on an Element in favor of calling this version.</p>\n",
26       "params": [
27         {
28           "type": "String/HTMLElement",
29           "name": "el",
30           "doc": "<p>The html element or id to assign the event handler to.</p>\n",
31           "optional": false
32         },
33         {
34           "type": "String",
35           "name": "eventName",
36           "doc": "<p>The name of the event to listen for.</p>\n",
37           "optional": false
38         },
39         {
40           "type": "Function",
41           "name": "handler",
42           "doc": "<p>The handler function the event invokes. This function is passed\nthe following parameters:<ul>\n<li>evt : EventObject<div class=\"sub-desc\">The <a href=\"#/api/Ext.EventObject\" rel=\"Ext.EventObject\" class=\"docClass\">EventObject</a> describing the event.</div></li>\n<li>t : Element<div class=\"sub-desc\">The <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Element</a> which was the target of the event.\nNote that this may be filtered by using the <tt>delegate</tt> option.</div></li>\n<li>o : Object<div class=\"sub-desc\">The options object from the addListener call.</div></li>\n</ul></p>\n",
43           "optional": false
44         },
45         {
46           "type": "Object",
47           "name": "scope",
48           "doc": "<p>(optional) The scope (<b><code>this</code></b> reference) in which the handler function is executed. <b>Defaults to the Element</b>.</p>\n",
49           "optional": true
50         },
51         {
52           "type": "Object",
53           "name": "options",
54           "doc": "<p>(optional) An object containing handler configuration properties.\nThis may contain any of the following properties:<ul>\n<li>scope : Object<div class=\"sub-desc\">The scope (<b><code>this</code></b> reference) in which the handler function is executed. <b>Defaults to the Element</b>.</div></li>\n<li>delegate : String<div class=\"sub-desc\">A simple selector to filter the target or look for a descendant of the target</div></li>\n<li>stopEvent : Boolean<div class=\"sub-desc\">True to stop the event. That is stop propagation, and prevent the default action.</div></li>\n<li>preventDefault : Boolean<div class=\"sub-desc\">True to prevent the default action</div></li>\n<li>stopPropagation : Boolean<div class=\"sub-desc\">True to prevent event propagation</div></li>\n<li>normalized : Boolean<div class=\"sub-desc\">False to pass a browser event to the handler function instead of an Ext.EventObject</div></li>\n<li>delay : Number<div class=\"sub-desc\">The number of milliseconds to delay the invocation of the handler after te event fires.</div></li>\n<li>single : Boolean<div class=\"sub-desc\">True to add a handler to handle just the next firing of the event, and then remove itself.</div></li>\n<li>buffer : Number<div class=\"sub-desc\">Causes the handler to be scheduled to run in an <a href=\"#/api/Ext.util.DelayedTask\" rel=\"Ext.util.DelayedTask\" class=\"docClass\">Ext.util.DelayedTask</a> 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.</div></li>\n<li>target : Element<div class=\"sub-desc\">Only call the handler if the event was fired on the target Element, <i>not</i> if the event was bubbled up from a child node.</div></li>\n</ul><br></p>\n\n<p>See <a href=\"#/api/Ext.core.Element-method-addListener\" rel=\"Ext.core.Element-method-addListener\" class=\"docClass\">Ext.core.Element.addListener</a> for examples of how to use these options.</p>\n\n",
55           "optional": true
56         }
57       ],
58       "return": {
59         "type": "void",
60         "doc": "\n"
61       },
62       "private": false,
63       "static": false,
64       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
65       "linenr": 284,
66       "html_filename": "EventManager.html",
67       "href": "EventManager.html#Ext-EventManager-method-addListener",
68       "shortDoc": "Appends an event handler to an element.  The shorthand version on is equivalent.  Typically you will\nuse Ext.core.Ele..."
69     },
70     {
71       "tagname": "method",
72       "name": "getId",
73       "member": "Ext.EventManager",
74       "doc": "<p>Get the id of the element. If one has not been assigned, automatically assign it.</p>\n",
75       "params": [
76         {
77           "type": "Mixed",
78           "name": "element",
79           "doc": "<p>The element to get the id for.</p>\n",
80           "optional": false
81         }
82       ],
83       "return": {
84         "type": "String",
85         "doc": "<p>id</p>\n"
86       },
87       "private": false,
88       "static": false,
89       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
90       "linenr": 170,
91       "html_filename": "EventManager.html",
92       "href": "EventManager.html#Ext-EventManager-method-getId",
93       "shortDoc": "<p>Get the id of the element. If one has not been assigned, automatically assign it.</p>\n"
94     },
95     {
96       "tagname": "method",
97       "name": "getKeyEvent",
98       "member": "Ext.EventManager",
99       "doc": "<p>Indicates which event to use for getting key presses.</p>\n",
100       "params": [
101
102       ],
103       "return": {
104         "type": "String",
105         "doc": "<p>The appropriate event name.</p>\n"
106       },
107       "private": false,
108       "static": false,
109       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
110       "linenr": 827,
111       "html_filename": "EventManager.html",
112       "href": "EventManager.html#Ext-EventManager-method-getKeyEvent",
113       "shortDoc": "<p>Indicates which event to use for getting key presses.</p>\n"
114     },
115     {
116       "tagname": "method",
117       "name": "getPageX",
118       "member": "Ext.EventManager",
119       "doc": "<p>Gets the x coordinate from the event</p>\n",
120       "params": [
121         {
122           "type": "Object",
123           "name": "event",
124           "doc": "<p>The event</p>\n",
125           "optional": false
126         }
127       ],
128       "return": {
129         "type": "Number",
130         "doc": "<p>The x coordinate</p>\n"
131       },
132       "private": false,
133       "static": false,
134       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
135       "linenr": 649,
136       "html_filename": "EventManager.html",
137       "href": "EventManager.html#Ext-EventManager-method-getPageX",
138       "shortDoc": "<p>Gets the x coordinate from the event</p>\n"
139     },
140     {
141       "tagname": "method",
142       "name": "getPageXY",
143       "member": "Ext.EventManager",
144       "doc": "<p>Gets the x &amp; ycoordinate from the event</p>\n",
145       "params": [
146         {
147           "type": "Object",
148           "name": "event",
149           "doc": "<p>The event</p>\n",
150           "optional": false
151         }
152       ],
153       "return": {
154         "type": "Array",
155         "doc": "<p>The x/y coordinate</p>\n"
156       },
157       "private": false,
158       "static": false,
159       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
160       "linenr": 667,
161       "html_filename": "EventManager.html",
162       "href": "EventManager.html#Ext-EventManager-method-getPageXY",
163       "shortDoc": "<p>Gets the x &amp; ycoordinate from the event</p>\n"
164     },
165     {
166       "tagname": "method",
167       "name": "getPageY",
168       "member": "Ext.EventManager",
169       "doc": "<p>Gets the y coordinate from the event</p>\n",
170       "params": [
171         {
172           "type": "Object",
173           "name": "event",
174           "doc": "<p>The event</p>\n",
175           "optional": false
176         }
177       ],
178       "return": {
179         "type": "Number",
180         "doc": "<p>The y coordinate</p>\n"
181       },
182       "private": false,
183       "static": false,
184       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
185       "linenr": 658,
186       "html_filename": "EventManager.html",
187       "href": "EventManager.html#Ext-EventManager-method-getPageY",
188       "shortDoc": "<p>Gets the y coordinate from the event</p>\n"
189     },
190     {
191       "tagname": "method",
192       "name": "getRelatedTarget",
193       "member": "Ext.EventManager",
194       "doc": "<p>Gets the related target from the event.</p>\n",
195       "params": [
196         {
197           "type": "Object",
198           "name": "event",
199           "doc": "<p>The event</p>\n",
200           "optional": false
201         }
202       ],
203       "return": {
204         "type": "HTMLElement",
205         "doc": "<p>The related target.</p>\n"
206       },
207       "private": false,
208       "static": false,
209       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
210       "linenr": 631,
211       "html_filename": "EventManager.html",
212       "href": "EventManager.html#Ext-EventManager-method-getRelatedTarget",
213       "shortDoc": "<p>Gets the related target from the event.</p>\n"
214     },
215     {
216       "tagname": "method",
217       "name": "getTarget",
218       "member": "Ext.EventManager",
219       "doc": "<p>Gets the target of the event.</p>\n",
220       "params": [
221         {
222           "type": "Object",
223           "name": "event",
224           "doc": "<p>The event</p>\n",
225           "optional": false
226         }
227       ],
228       "return": {
229         "type": "HTMLElement",
230         "doc": "<p>target</p>\n"
231       },
232       "private": false,
233       "static": false,
234       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
235       "linenr": 687,
236       "html_filename": "EventManager.html",
237       "href": "EventManager.html#Ext-EventManager-method-getTarget",
238       "shortDoc": "<p>Gets the target of the event.</p>\n"
239     },
240     {
241       "tagname": "method",
242       "name": "on",
243       "member": "Ext.EventManager",
244       "doc": "<p>Alias for <a href=\"#/api/Ext.EventManager-method-addListener\" rel=\"Ext.EventManager-method-addListener\" class=\"docClass\">Ext.EventManager.addListener</a></p>\n",
245       "params": [
246
247       ],
248       "return": {
249         "type": "void",
250         "doc": "\n"
251       },
252       "private": false,
253       "static": false,
254       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
255       "linenr": 852,
256       "html_filename": "EventManager.html",
257       "href": "EventManager.html#Ext-EventManager-method-on",
258       "shortDoc": "<p>Alias for <a href=\"#/api/Ext.EventManager-method-addListener\" rel=\"Ext.EventManager-method-addListener\" class=\"docClass\">Ext.EventManager.addListener</a></p>\n"
259     },
260     {
261       "tagname": "method",
262       "name": "onDocumentReady",
263       "member": "Ext.EventManager",
264       "doc": "<p>Adds a listener to be notified when the document is ready (before onload and before images are loaded). Can be\naccessed shorthanded as Ext.onReady().</p>\n",
265       "params": [
266         {
267           "type": "Function",
268           "name": "fn",
269           "doc": "<p>The method the event invokes.</p>\n",
270           "optional": false
271         },
272         {
273           "type": "Object",
274           "name": "scope",
275           "doc": "<p>(optional) The scope (<code>this</code> reference) in which the handler function executes. Defaults to the browser window.</p>\n",
276           "optional": true
277         },
278         {
279           "type": "boolean",
280           "name": "options",
281           "doc": "<p>(optional) Options object as passed to <a href=\"#/api/Ext.core.Element-method-addListener\" rel=\"Ext.core.Element-method-addListener\" class=\"docClass\">Ext.core.Element.addListener</a>.</p>\n",
282           "optional": true
283         }
284       ],
285       "return": {
286         "type": "void",
287         "doc": "\n"
288       },
289       "private": false,
290       "static": false,
291       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
292       "linenr": 129,
293       "html_filename": "EventManager.html",
294       "href": "EventManager.html#Ext-EventManager-method-onDocumentReady",
295       "shortDoc": "Adds a listener to be notified when the document is ready (before onload and before images are loaded). Can be\naccess..."
296     },
297     {
298       "tagname": "method",
299       "name": "onWindowResize",
300       "member": "Ext.EventManager",
301       "doc": "<p>Adds a listener to be notified when the browser window is resized and provides resize event buffering (100 milliseconds),\npasses new viewport width and height to handlers.</p>\n",
302       "params": [
303         {
304           "type": "Function",
305           "name": "fn",
306           "doc": "<p>The handler function the window resize event invokes.</p>\n",
307           "optional": false
308         },
309         {
310           "type": "Object",
311           "name": "scope",
312           "doc": "<p>The scope (<code>this</code> reference) in which the handler function executes. Defaults to the browser window.</p>\n",
313           "optional": false
314         },
315         {
316           "type": "boolean",
317           "name": "options",
318           "doc": "<p>Options object as passed to <a href=\"#/api/Ext.core.Element-method-addListener\" rel=\"Ext.core.Element-method-addListener\" class=\"docClass\">Ext.core.Element.addListener</a></p>\n",
319           "optional": false
320         }
321       ],
322       "return": {
323         "type": "void",
324         "doc": "\n"
325       },
326       "private": false,
327       "static": false,
328       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
329       "linenr": 725,
330       "html_filename": "EventManager.html",
331       "href": "EventManager.html#Ext-EventManager-method-onWindowResize",
332       "shortDoc": "Adds a listener to be notified when the browser window is resized and provides resize event buffering (100 millisecon..."
333     },
334     {
335       "tagname": "method",
336       "name": "preventDefault",
337       "member": "Ext.EventManager",
338       "doc": "<p>Prevents the browsers default handling of the event.</p>\n",
339       "params": [
340         {
341           "type": "Event",
342           "name": "The",
343           "doc": "<p>event to prevent the default</p>\n",
344           "optional": false
345         }
346       ],
347       "return": {
348         "type": "void",
349         "doc": "\n"
350       },
351       "private": false,
352       "static": false,
353       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
354       "linenr": 609,
355       "html_filename": "EventManager.html",
356       "href": "EventManager.html#Ext-EventManager-method-preventDefault",
357       "shortDoc": "<p>Prevents the browsers default handling of the event.</p>\n"
358     },
359     {
360       "tagname": "method",
361       "name": "purgeElement",
362       "member": "Ext.EventManager",
363       "doc": "<p>Recursively removes all previous added listeners from an element and its children. Typically you will use <a href=\"#/api/Ext.core.Element-method-purgeAllListeners\" rel=\"Ext.core.Element-method-purgeAllListeners\" class=\"docClass\">Ext.core.Element.purgeAllListeners</a>\ndirectly on an Element in favor of calling this version.</p>\n",
364       "params": [
365         {
366           "type": "String/HTMLElement",
367           "name": "el",
368           "doc": "<p>The id or html element from which to remove all event handlers.</p>\n",
369           "optional": false
370         },
371         {
372           "type": "String",
373           "name": "eventName",
374           "doc": "<p>(optional) The name of the event.</p>\n",
375           "optional": true
376         }
377       ],
378       "return": {
379         "type": "void",
380         "doc": "\n"
381       },
382       "private": false,
383       "static": false,
384       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
385       "linenr": 452,
386       "html_filename": "EventManager.html",
387       "href": "EventManager.html#Ext-EventManager-method-purgeElement",
388       "shortDoc": "Recursively removes all previous added listeners from an element and its children. Typically you will use Ext.core.El..."
389     },
390     {
391       "tagname": "method",
392       "name": "removeAll",
393       "member": "Ext.EventManager",
394       "doc": "<p>Removes all event handers from an element.  Typically you will use <a href=\"#/api/Ext.core.Element-method-removeAllListeners\" rel=\"Ext.core.Element-method-removeAllListeners\" class=\"docClass\">Ext.core.Element.removeAllListeners</a>\ndirectly on an Element in favor of calling this version.</p>\n",
395       "params": [
396         {
397           "type": "String/HTMLElement",
398           "name": "el",
399           "doc": "<p>The id or html element from which to remove all event handlers.</p>\n",
400           "optional": false
401         }
402       ],
403       "return": {
404         "type": "void",
405         "doc": "\n"
406       },
407       "private": false,
408       "static": false,
409       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
410       "linenr": 431,
411       "html_filename": "EventManager.html",
412       "href": "EventManager.html#Ext-EventManager-method-removeAll",
413       "shortDoc": "Removes all event handers from an element.  Typically you will use Ext.core.Element.removeAllListeners\ndirectly on an..."
414     },
415     {
416       "tagname": "method",
417       "name": "removeListener",
418       "member": "Ext.EventManager",
419       "doc": "<p>Removes an event handler from an element.  The shorthand version <a href=\"#/api/Ext.EventManager-method-un\" rel=\"Ext.EventManager-method-un\" class=\"docClass\">un</a> is equivalent.  Typically\nyou will use <a href=\"#/api/Ext.core.Element-method-removeListener\" rel=\"Ext.core.Element-method-removeListener\" class=\"docClass\">Ext.core.Element.removeListener</a> directly on an Element in favor of calling this version.</p>\n",
420       "params": [
421         {
422           "type": "String/HTMLElement",
423           "name": "el",
424           "doc": "<p>The id or html element from which to remove the listener.</p>\n",
425           "optional": false
426         },
427         {
428           "type": "String",
429           "name": "eventName",
430           "doc": "<p>The name of the event.</p>\n",
431           "optional": false
432         },
433         {
434           "type": "Function",
435           "name": "fn",
436           "doc": "<p>The handler function to remove. <b>This must be a reference to the function passed into the <a href=\"#/api/Ext.EventManager-method-addListener\" rel=\"Ext.EventManager-method-addListener\" class=\"docClass\">addListener</a> call.</b></p>\n",
437           "optional": false
438         },
439         {
440           "type": "Object",
441           "name": "scope",
442           "doc": "<p>If a scope (<b><code>this</code></b> reference) was specified when the listener was added,\nthen this must refer to the same object.</p>\n",
443           "optional": false
444         }
445       ],
446       "return": {
447         "type": "void",
448         "doc": "\n"
449       },
450       "private": false,
451       "static": false,
452       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
453       "linenr": 371,
454       "html_filename": "EventManager.html",
455       "href": "EventManager.html#Ext-EventManager-method-removeListener",
456       "shortDoc": "Removes an event handler from an element.  The shorthand version un is equivalent.  Typically\nyou will use Ext.core.E..."
457     },
458     {
459       "tagname": "method",
460       "name": "removeResizeListener",
461       "member": "Ext.EventManager",
462       "doc": "<p>Removes the passed window resize listener.</p>\n",
463       "params": [
464         {
465           "type": "Function",
466           "name": "fn",
467           "doc": "<p>The method the event invokes</p>\n",
468           "optional": false
469         },
470         {
471           "type": "Object",
472           "name": "scope",
473           "doc": "<p>The scope of handler</p>\n",
474           "optional": false
475         }
476       ],
477       "return": {
478         "type": "void",
479         "doc": "\n"
480       },
481       "private": false,
482       "static": false,
483       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
484       "linenr": 758,
485       "html_filename": "EventManager.html",
486       "href": "EventManager.html#Ext-EventManager-method-removeResizeListener",
487       "shortDoc": "<p>Removes the passed window resize listener.</p>\n"
488     },
489     {
490       "tagname": "method",
491       "name": "removeUnloadListener",
492       "member": "Ext.EventManager",
493       "doc": "<p>Removes the passed window unload listener.</p>\n",
494       "params": [
495         {
496           "type": "Function",
497           "name": "fn",
498           "doc": "<p>The method the event invokes</p>\n",
499           "optional": false
500         },
501         {
502           "type": "Object",
503           "name": "scope",
504           "doc": "<p>The scope of handler</p>\n",
505           "optional": false
506         }
507       ],
508       "return": {
509         "type": "void",
510         "doc": "\n"
511       },
512       "private": false,
513       "static": false,
514       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
515       "linenr": 806,
516       "html_filename": "EventManager.html",
517       "href": "EventManager.html#Ext-EventManager-method-removeUnloadListener",
518       "shortDoc": "<p>Removes the passed window unload listener.</p>\n"
519     },
520     {
521       "tagname": "method",
522       "name": "stopEvent",
523       "member": "Ext.EventManager",
524       "doc": "<p>Stop the event (preventDefault and stopPropagation)</p>\n",
525       "params": [
526         {
527           "type": "Event",
528           "name": "The",
529           "doc": "<p>event to stop</p>\n",
530           "optional": false
531         }
532       ],
533       "return": {
534         "type": "void",
535         "doc": "\n"
536       },
537       "private": false,
538       "static": false,
539       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
540       "linenr": 587,
541       "html_filename": "EventManager.html",
542       "href": "EventManager.html#Ext-EventManager-method-stopEvent",
543       "shortDoc": "<p>Stop the event (preventDefault and stopPropagation)</p>\n"
544     },
545     {
546       "tagname": "method",
547       "name": "stopPropagation",
548       "member": "Ext.EventManager",
549       "doc": "<p>Cancels bubbling of the event.</p>\n",
550       "params": [
551         {
552           "type": "Event",
553           "name": "The",
554           "doc": "<p>event to stop bubbling.</p>\n",
555           "optional": false
556         }
557       ],
558       "return": {
559         "type": "void",
560         "doc": "\n"
561       },
562       "private": false,
563       "static": false,
564       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
565       "linenr": 596,
566       "html_filename": "EventManager.html",
567       "href": "EventManager.html#Ext-EventManager-method-stopPropagation",
568       "shortDoc": "<p>Cancels bubbling of the event.</p>\n"
569     },
570     {
571       "tagname": "method",
572       "name": "un",
573       "member": "Ext.EventManager",
574       "doc": "<p>Alias for <a href=\"#/api/Ext.EventManager-method-removeListener\" rel=\"Ext.EventManager-method-removeListener\" class=\"docClass\">Ext.EventManager.removeListener</a></p>\n",
575       "params": [
576
577       ],
578       "return": {
579         "type": "void",
580         "doc": "\n"
581       },
582       "private": false,
583       "static": false,
584       "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
585       "linenr": 859,
586       "html_filename": "EventManager.html",
587       "href": "EventManager.html#Ext-EventManager-method-un",
588       "shortDoc": "<p>Alias for <a href=\"#/api/Ext.EventManager-method-removeListener\" rel=\"Ext.EventManager-method-removeListener\" class=\"docClass\">Ext.EventManager.removeListener</a></p>\n"
589     }
590   ],
591   "property": [
592
593   ],
594   "event": [
595
596   ],
597   "filename": "/Users/nick/Projects/sencha/SDK/platform/core/src/EventManager.js",
598   "linenr": 1,
599   "html_filename": "EventManager.html",
600   "href": "EventManager.html#Ext-EventManager",
601   "cssVar": [
602
603   ],
604   "cssMixin": [
605
606   ],
607   "component": false,
608   "superclasses": [
609
610   ],
611   "subclasses": [
612
613   ],
614   "mixedInto": [
615
616   ],
617   "allMixins": [
618
619   ]
620 });