Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / output / Ext.EventObject.js
1 Ext.data.JsonP.Ext_EventObject({
2   "allMixins": [
3
4   ],
5   "deprecated": null,
6   "docauthor": null,
7   "members": {
8     "cfg": [
9
10     ],
11     "method": [
12       {
13         "deprecated": null,
14         "alias": null,
15         "protected": false,
16         "tagname": "method",
17         "href": "Base3.html#Ext-Base-method-addStatics",
18         "shortDoc": "Add / override static properties of this class. ...",
19         "static": true,
20         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
21         "private": false,
22         "params": [
23           {
24             "type": "Object",
25             "optional": false,
26             "doc": "\n",
27             "name": "members"
28           }
29         ],
30         "name": "addStatics",
31         "owner": "Ext.Base",
32         "doc": "<p>Add / override static properties of this class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.addStatics({\n    someProperty: 'someValue',      // My.cool.Class.someProperty = 'someValue'\n    method1: function() { ... },    // My.cool.Class.method1 = function() { ... };\n    method2: function() { ... }     // My.cool.Class.method2 = function() { ... };\n});\n</code></pre>\n",
33         "linenr": 388,
34         "return": {
35           "type": "Ext.Base",
36           "doc": "<p>this</p>\n"
37         },
38         "html_filename": "Base3.html"
39       },
40       {
41         "deprecated": null,
42         "alias": null,
43         "protected": false,
44         "tagname": "method",
45         "href": "Base3.html#Ext-Base-method-callOverridden",
46         "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n    constructo...",
47         "static": false,
48         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
49         "private": false,
50         "params": [
51           {
52             "type": "Array/Arguments",
53             "optional": false,
54             "doc": "<p>The arguments, either an array or the <code>arguments</code> object</p>\n",
55             "name": "args"
56           }
57         ],
58         "name": "callOverridden",
59         "owner": "Ext.Base",
60         "doc": "<p>Call the original method that was previously overridden with <a href=\"#/api/Ext.Base-method-override\" rel=\"Ext.Base-method-override\" class=\"docClass\">Ext.Base.override</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
61         "linenr": 269,
62         "return": {
63           "type": "Mixed",
64           "doc": "<p>Returns the result after calling the overridden method</p>\n"
65         },
66         "html_filename": "Base3.html"
67       },
68       {
69         "deprecated": null,
70         "alias": null,
71         "protected": true,
72         "tagname": "method",
73         "href": "Base3.html#Ext-Base-method-callParent",
74         "shortDoc": "Call the parent's overridden method. ...",
75         "static": false,
76         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
77         "private": false,
78         "params": [
79           {
80             "type": "Array/Arguments",
81             "optional": false,
82             "doc": "<p>The arguments, either an array or the <code>arguments</code> object\nfrom the current method, for example: <code>this.callParent(arguments)</code></p>\n",
83             "name": "args"
84           }
85         ],
86         "name": "callParent",
87         "owner": "Ext.Base",
88         "doc": "<p>Call the parent's overridden method. For example:</p>\n\n<pre><code>Ext.define('My.own.A', {\n    constructor: function(test) {\n        alert(test);\n    }\n});\n\nExt.define('My.own.B', {\n    extend: 'My.own.A',\n\n    constructor: function(test) {\n        alert(test);\n\n        this.callParent([test + 1]);\n    }\n});\n\nExt.define('My.own.C', {\n    extend: 'My.own.B',\n\n    constructor: function() {\n        alert(\"Going to call parent's overriden constructor...\");\n\n        this.callParent(arguments);\n    }\n});\n\nvar a = new My.own.A(1); // alerts '1'\nvar b = new My.own.B(1); // alerts '1', then alerts '2'\nvar c = new My.own.C(2); // alerts \"Going to call parent's overriden constructor...\"\n                         // alerts '2', then alerts '3'\n</code></pre>\n",
89         "linenr": 124,
90         "return": {
91           "type": "Mixed",
92           "doc": "<p>Returns the result from the superclass' method</p>\n"
93         },
94         "html_filename": "Base3.html"
95       },
96       {
97         "deprecated": null,
98         "alias": null,
99         "protected": false,
100         "tagname": "method",
101         "href": "EventObject.html#Ext-EventObject-method-correctWheelDelta",
102         "shortDoc": "Correctly scales a given wheel delta. ...",
103         "static": false,
104         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
105         "private": false,
106         "params": [
107           {
108             "type": "Number",
109             "optional": false,
110             "doc": "<p>The delta value.</p>\n",
111             "name": "delta"
112           }
113         ],
114         "name": "correctWheelDelta",
115         "owner": "Ext.EventObject",
116         "doc": "<p>Correctly scales a given wheel delta.</p>\n",
117         "linenr": 468,
118         "return": {
119           "type": "void",
120           "doc": "\n"
121         },
122         "html_filename": "EventObject.html"
123       },
124       {
125         "deprecated": null,
126         "alias": null,
127         "protected": false,
128         "tagname": "method",
129         "href": "Base3.html#Ext-Base-method-create",
130         "shortDoc": "Create a new instance of this Class. ...",
131         "static": true,
132         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
133         "private": false,
134         "params": [
135
136         ],
137         "name": "create",
138         "owner": "Ext.Base",
139         "doc": "<p>Create a new instance of this Class.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n</code></pre>\n\n<p>All parameters are passed to the constructor of the class.</p>\n",
140         "linenr": 329,
141         "return": {
142           "type": "Object",
143           "doc": "<p>the created instance.</p>\n"
144         },
145         "html_filename": "Base3.html"
146       },
147       {
148         "deprecated": null,
149         "alias": null,
150         "protected": false,
151         "tagname": "method",
152         "href": "Base3.html#Ext-Base-method-createAlias",
153         "shortDoc": "Create aliases for existing prototype methods. ...",
154         "static": true,
155         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
156         "private": false,
157         "params": [
158           {
159             "type": "String/Object",
160             "optional": false,
161             "doc": "<p>The new method name, or an object to set multiple aliases. See\n<a href=\"#/api/Ext.Function-method-flexSetter\" rel=\"Ext.Function-method-flexSetter\" class=\"docClass\">flexSetter</a></p>\n",
162             "name": "alias"
163           },
164           {
165             "type": "String/Object",
166             "optional": false,
167             "doc": "<p>The original method name</p>\n",
168             "name": "origin"
169           }
170         ],
171         "name": "createAlias",
172         "owner": "Ext.Base",
173         "doc": "<p>Create aliases for existing prototype methods. Example:</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    method1: function() { ... },\n    method2: function() { ... }\n});\n\nvar test = new My.cool.Class();\n\nMy.cool.Class.createAlias({\n    method3: 'method1',\n    method4: 'method2'\n});\n\ntest.method3(); // test.method1()\n\nMy.cool.Class.createAlias('method5', 'method3');\n\ntest.method5(); // test.method3() -&gt; test.method1()\n</code></pre>\n",
174         "linenr": 648,
175         "return": {
176           "type": "void",
177           "doc": "\n"
178         },
179         "html_filename": "Base3.html"
180       },
181       {
182         "deprecated": null,
183         "alias": null,
184         "protected": false,
185         "tagname": "method",
186         "href": "EventObject.html#Ext-EventObject-method-getCharCode",
187         "shortDoc": "Gets the character code for the event. ...",
188         "static": false,
189         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
190         "private": false,
191         "params": [
192
193         ],
194         "name": "getCharCode",
195         "owner": "Ext.EventObject",
196         "doc": "<p>Gets the character code for the event.</p>\n",
197         "linenr": 367,
198         "return": {
199           "type": "Number",
200           "doc": "\n"
201         },
202         "html_filename": "EventObject.html"
203       },
204       {
205         "deprecated": null,
206         "alias": null,
207         "protected": false,
208         "tagname": "method",
209         "href": "EventObject.html#Ext-EventObject-method-getKey",
210         "shortDoc": "Returns a normalized keyCode for the event. ...",
211         "static": false,
212         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
213         "private": false,
214         "params": [
215
216         ],
217         "name": "getKey",
218         "owner": "Ext.EventObject",
219         "doc": "<p>Returns a normalized keyCode for the event.</p>\n",
220         "linenr": 375,
221         "return": {
222           "type": "Number",
223           "doc": "<p>The key code</p>\n"
224         },
225         "html_filename": "EventObject.html"
226       },
227       {
228         "deprecated": null,
229         "alias": null,
230         "protected": false,
231         "tagname": "method",
232         "href": "Base3.html#Ext-Base-method-getName",
233         "shortDoc": "Get the current class' name in string format. ...",
234         "static": false,
235         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
236         "private": false,
237         "params": [
238
239         ],
240         "name": "getName",
241         "owner": "Ext.Base",
242         "doc": "<p>Get the current class' name in string format.</p>\n\n<pre><code>Ext.define('My.cool.Class', {\n    constructor: function() {\n        alert(this.self.getName()); // alerts 'My.cool.Class'\n    }\n});\n\nMy.cool.Class.getName(); // 'My.cool.Class'\n</code></pre>\n",
243         "linenr": 631,
244         "return": {
245           "type": "String",
246           "doc": "<p>className</p>\n"
247         },
248         "html_filename": "Base3.html"
249       },
250       {
251         "deprecated": {
252           "version": "4.0",
253           "text": "<p>Replaced by <a href=\"#/api/Ext.EventObject-method-getX\" rel=\"Ext.EventObject-method-getX\" class=\"docClass\">getX</a></p>\n",
254           "tagname": "deprecated",
255           "doc": null
256         },
257         "alias": null,
258         "protected": false,
259         "tagname": "method",
260         "href": "EventObject.html#Ext-EventObject-method-getPageX",
261         "shortDoc": "Gets the x coordinate of the event. ...",
262         "static": false,
263         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
264         "private": false,
265         "params": [
266
267         ],
268         "name": "getPageX",
269         "owner": "Ext.EventObject",
270         "doc": "<p>Gets the x coordinate of the event.</p>\n",
271         "linenr": 394,
272         "return": {
273           "type": "Number",
274           "doc": "\n"
275         },
276         "html_filename": "EventObject.html"
277       },
278       {
279         "deprecated": {
280           "version": "4.0",
281           "text": "<p>Replaced by <a href=\"#/api/Ext.EventObject-method-getY\" rel=\"Ext.EventObject-method-getY\" class=\"docClass\">getY</a></p>\n",
282           "tagname": "deprecated",
283           "doc": null
284         },
285         "alias": null,
286         "protected": false,
287         "tagname": "method",
288         "href": "EventObject.html#Ext-EventObject-method-getPageY",
289         "shortDoc": "Gets the y coordinate of the event. ...",
290         "static": false,
291         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
292         "private": false,
293         "params": [
294
295         ],
296         "name": "getPageY",
297         "owner": "Ext.EventObject",
298         "doc": "<p>Gets the y coordinate of the event.</p>\n",
299         "linenr": 403,
300         "return": {
301           "type": "Number",
302           "doc": "\n"
303         },
304         "html_filename": "EventObject.html"
305       },
306       {
307         "deprecated": null,
308         "alias": null,
309         "protected": false,
310         "tagname": "method",
311         "href": "EventObject.html#Ext-EventObject-method-getPoint",
312         "shortDoc": "Returns a point object that consists of the object coordinates. ...",
313         "static": false,
314         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
315         "private": false,
316         "params": [
317
318         ],
319         "name": "getPoint",
320         "owner": "Ext.EventObject",
321         "doc": "<p>Returns a point object that consists of the object coordinates.</p>\n",
322         "linenr": 598,
323         "return": {
324           "type": "Ext.util.Point",
325           "doc": "<p>point</p>\n"
326         },
327         "html_filename": "EventObject.html"
328       },
329       {
330         "deprecated": null,
331         "alias": null,
332         "protected": false,
333         "tagname": "method",
334         "href": "EventObject.html#Ext-EventObject-method-getRelatedTarget",
335         "shortDoc": "Gets the related target. ...",
336         "static": false,
337         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
338         "private": false,
339         "params": [
340           {
341             "type": "String",
342             "optional": true,
343             "doc": "<p>(optional) A simple selector to filter the target or look for an ancestor of the target</p>\n",
344             "name": "selector"
345           },
346           {
347             "type": "Number/Mixed",
348             "optional": true,
349             "doc": "<p>(optional) The max depth to search as a number or element (defaults to 10 || document.body)</p>\n",
350             "name": "maxDepth"
351           },
352           {
353             "type": "Boolean",
354             "optional": true,
355             "doc": "<p>(optional) True to return a <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Ext.core.Element</a> object instead of DOM node</p>\n",
356             "name": "returnEl"
357           }
358         ],
359         "name": "getRelatedTarget",
360         "owner": "Ext.EventObject",
361         "doc": "<p>Gets the related target.</p>\n",
362         "linenr": 454,
363         "return": {
364           "type": "HTMLElement",
365           "doc": "\n"
366         },
367         "html_filename": "EventObject.html"
368       },
369       {
370         "deprecated": null,
371         "alias": null,
372         "protected": false,
373         "tagname": "method",
374         "href": "EventObject.html#Ext-EventObject-method-getTarget",
375         "shortDoc": "Gets the target for the event. ...",
376         "static": false,
377         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
378         "private": false,
379         "params": [
380           {
381             "type": "String",
382             "optional": true,
383             "doc": "<p>(optional) A simple selector to filter the target or look for an ancestor of the target</p>\n",
384             "name": "selector"
385           },
386           {
387             "type": "Number/Mixed",
388             "optional": true,
389             "doc": "<p>(optional) The max depth to search as a number or element (defaults to 10 || document.body)</p>\n",
390             "name": "maxDepth"
391           },
392           {
393             "type": "Boolean",
394             "optional": true,
395             "doc": "<p>(optional) True to return a <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Ext.core.Element</a> object instead of DOM node</p>\n",
396             "name": "returnEl"
397           }
398         ],
399         "name": "getTarget",
400         "owner": "Ext.EventObject",
401         "doc": "<p>Gets the target for the event.</p>\n",
402         "linenr": 440,
403         "return": {
404           "type": "HTMLelement",
405           "doc": "\n"
406         },
407         "html_filename": "EventObject.html"
408       },
409       {
410         "deprecated": null,
411         "alias": null,
412         "protected": false,
413         "tagname": "method",
414         "href": "EventObject.html#Ext-EventObject-method-getWheelDelta",
415         "shortDoc": "Normalizes mouse wheel y-delta across browsers. ...",
416         "static": false,
417         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
418         "private": false,
419         "params": [
420
421         ],
422         "name": "getWheelDelta",
423         "owner": "Ext.EventObject",
424         "doc": "<p>Normalizes mouse wheel y-delta across browsers. To get x-delta information, use\n<a href=\"#/api/Ext.EventObject-method-getWheelDeltas\" rel=\"Ext.EventObject-method-getWheelDeltas\" class=\"docClass\">getWheelDeltas</a> instead.</p>\n",
425         "linenr": 522,
426         "return": {
427           "type": "Number",
428           "doc": "<p>The mouse wheel y-delta</p>\n"
429         },
430         "html_filename": "EventObject.html"
431       },
432       {
433         "deprecated": null,
434         "alias": null,
435         "protected": false,
436         "tagname": "method",
437         "href": "EventObject.html#Ext-EventObject-method-getWheelDeltas",
438         "shortDoc": "Returns the mouse wheel deltas for this event. ...",
439         "static": false,
440         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
441         "private": false,
442         "params": [
443
444         ],
445         "name": "getWheelDeltas",
446         "owner": "Ext.EventObject",
447         "doc": "<p>Returns the mouse wheel deltas for this event.</p>\n",
448         "linenr": 483,
449         "return": {
450           "type": "Object",
451           "doc": "<p>An object with \"x\" and \"y\" properties holding the mouse wheel deltas.</p>\n"
452         },
453         "html_filename": "EventObject.html"
454       },
455       {
456         "deprecated": null,
457         "alias": null,
458         "protected": false,
459         "tagname": "method",
460         "href": "EventObject.html#Ext-EventObject-method-getX",
461         "shortDoc": "Gets the x coordinate of the event. ...",
462         "static": false,
463         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
464         "private": false,
465         "params": [
466
467         ],
468         "name": "getX",
469         "owner": "Ext.EventObject",
470         "doc": "<p>Gets the x coordinate of the event.</p>\n",
471         "linenr": 412,
472         "return": {
473           "type": "Number",
474           "doc": "\n"
475         },
476         "html_filename": "EventObject.html"
477       },
478       {
479         "deprecated": null,
480         "alias": null,
481         "protected": false,
482         "tagname": "method",
483         "href": "EventObject.html#Ext-EventObject-method-getXY",
484         "shortDoc": "Gets the page coordinates of the event. ...",
485         "static": false,
486         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
487         "private": false,
488         "params": [
489
490         ],
491         "name": "getXY",
492         "owner": "Ext.EventObject",
493         "doc": "<p>Gets the page coordinates of the event.</p>\n",
494         "linenr": 428,
495         "return": {
496           "type": "Array",
497           "doc": "<p>The xy values like [x, y]</p>\n"
498         },
499         "html_filename": "EventObject.html"
500       },
501       {
502         "deprecated": null,
503         "alias": null,
504         "protected": false,
505         "tagname": "method",
506         "href": "EventObject.html#Ext-EventObject-method-getY",
507         "shortDoc": "Gets the y coordinate of the event. ...",
508         "static": false,
509         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
510         "private": false,
511         "params": [
512
513         ],
514         "name": "getY",
515         "owner": "Ext.EventObject",
516         "doc": "<p>Gets the y coordinate of the event.</p>\n",
517         "linenr": 420,
518         "return": {
519           "type": "Number",
520           "doc": "\n"
521         },
522         "html_filename": "EventObject.html"
523       },
524       {
525         "deprecated": null,
526         "alias": null,
527         "protected": false,
528         "tagname": "method",
529         "href": "EventObject.html#Ext-EventObject-method-hasModifier",
530         "shortDoc": "Returns true if the control, meta, shift or alt key was pressed during this event. ...",
531         "static": false,
532         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
533         "private": false,
534         "params": [
535
536         ],
537         "name": "hasModifier",
538         "owner": "Ext.EventObject",
539         "doc": "<p>Returns true if the control, meta, shift or alt key was pressed during this event.</p>\n",
540         "linenr": 607,
541         "return": {
542           "type": "Boolean",
543           "doc": "\n"
544         },
545         "html_filename": "EventObject.html"
546       },
547       {
548         "deprecated": null,
549         "alias": null,
550         "protected": false,
551         "tagname": "method",
552         "href": "Base3.html#Ext-Base-method-implement",
553         "shortDoc": "Add methods / properties to the prototype of this class. ...",
554         "static": true,
555         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
556         "private": false,
557         "params": [
558           {
559             "type": "Object",
560             "optional": false,
561             "doc": "\n",
562             "name": "members"
563           }
564         ],
565         "name": "implement",
566         "owner": "Ext.Base",
567         "doc": "<p>Add methods / properties to the prototype of this class.</p>\n\n<pre><code>Ext.define('My.awesome.Cat', {\n    constructor: function() {\n        ...\n    }\n});\n\n My.awesome.Cat.implement({\n     meow: function() {\n        alert('Meowww...');\n     }\n });\n\n var kitty = new My.awesome.Cat;\n kitty.meow();\n</code></pre>\n",
568         "linenr": 415,
569         "return": {
570           "type": "void",
571           "doc": "\n"
572         },
573         "html_filename": "Base3.html"
574       },
575       {
576         "deprecated": null,
577         "alias": null,
578         "protected": true,
579         "tagname": "method",
580         "href": "Base3.html#Ext-Base-method-initConfig",
581         "shortDoc": "Initialize configuration for this class. ...",
582         "static": false,
583         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
584         "private": false,
585         "params": [
586           {
587             "type": "Object",
588             "optional": false,
589             "doc": "\n",
590             "name": "config"
591           }
592         ],
593         "name": "initConfig",
594         "owner": "Ext.Base",
595         "doc": "<p>Initialize configuration for this class. a typical example:</p>\n\n<pre><code>Ext.define('My.awesome.Class', {\n    // The default config\n    config: {\n        name: 'Awesome',\n        isAwesome: true\n    },\n\n    constructor: function(config) {\n        this.initConfig(config);\n\n        return this;\n    }\n});\n\nvar awesome = new My.awesome.Class({\n    name: 'Super Awesome'\n});\n\nalert(awesome.getName()); // 'Super Awesome'\n</code></pre>\n",
596         "linenr": 63,
597         "return": {
598           "type": "Object",
599           "doc": "<p>mixins The mixin prototypes as key - value pairs</p>\n"
600         },
601         "html_filename": "Base3.html"
602       },
603       {
604         "deprecated": null,
605         "alias": null,
606         "protected": false,
607         "tagname": "method",
608         "href": "EventObject.html#Ext-EventObject-method-injectEvent",
609         "shortDoc": "Injects a DOM event using the data in this object and (optionally) a new target. ...",
610         "static": false,
611         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
612         "private": false,
613         "params": [
614           {
615             "type": "Element/HTMLElement",
616             "optional": false,
617             "doc": "<p>If specified, the target for the event. This\nis likely to be used when relaying a DOM event. If not specified, <a href=\"#/api/Ext.EventObject-method-getTarget\" rel=\"Ext.EventObject-method-getTarget\" class=\"docClass\">getTarget</a>\nis used to determine the target.</p>\n",
618             "name": "target"
619           }
620         ],
621         "name": "injectEvent",
622         "owner": "Ext.EventObject",
623         "doc": "<p>Injects a DOM event using the data in this object and (optionally) a new target.\nThis is a low-level technique and not likely to be used by application code. The\ncurrently supported event types are:</p>\n\n<p><b>HTMLEvents</b></p>\n\n\n<ul>\n<li>load</li>\n<li>unload</li>\n<li>select</li>\n<li>change</li>\n<li>submit</li>\n<li>reset</li>\n<li>resize</li>\n<li>scroll</li>\n</ul>\n\n\n<p><b>MouseEvents</b></p>\n\n\n<ul>\n<li>click</li>\n<li>dblclick</li>\n<li>mousedown</li>\n<li>mouseup</li>\n<li>mouseover</li>\n<li>mousemove</li>\n<li>mouseout</li>\n</ul>\n\n\n<p><b>UIEvents</b></p>\n\n\n<ul>\n<li>focusin</li>\n<li>focusout</li>\n<li>activate</li>\n<li>focus</li>\n<li>blur</li>\n</ul>\n\n",
624         "linenr": 615,
625         "return": {
626           "type": "void",
627           "doc": "\n"
628         },
629         "html_filename": "EventObject.html"
630       },
631       {
632         "deprecated": null,
633         "alias": null,
634         "protected": false,
635         "tagname": "method",
636         "href": "EventObject.html#Ext-EventObject-method-isNavKeyPress",
637         "shortDoc": "Checks if the key pressed was a \"navigation\" key ...",
638         "static": false,
639         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
640         "private": false,
641         "params": [
642
643         ],
644         "name": "isNavKeyPress",
645         "owner": "Ext.EventObject",
646         "doc": "<p>Checks if the key pressed was a \"navigation\" key</p>\n",
647         "linenr": 571,
648         "return": {
649           "type": "Boolean",
650           "doc": "<p>True if the press is a navigation keypress</p>\n"
651         },
652         "html_filename": "EventObject.html"
653       },
654       {
655         "deprecated": null,
656         "alias": null,
657         "protected": false,
658         "tagname": "method",
659         "href": "EventObject.html#Ext-EventObject-method-isSpecialKey",
660         "shortDoc": "Checks if the key pressed was a \"special\" key ...",
661         "static": false,
662         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
663         "private": false,
664         "params": [
665
666         ],
667         "name": "isSpecialKey",
668         "owner": "Ext.EventObject",
669         "doc": "<p>Checks if the key pressed was a \"special\" key</p>\n",
670         "linenr": 585,
671         "return": {
672           "type": "Boolean",
673           "doc": "<p>True if the press is a special keypress</p>\n"
674         },
675         "html_filename": "EventObject.html"
676       },
677       {
678         "deprecated": null,
679         "alias": null,
680         "protected": false,
681         "tagname": "method",
682         "href": "Base3.html#Ext-Base-method-override",
683         "shortDoc": "Override prototype members of this class. ...",
684         "static": true,
685         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
686         "private": false,
687         "params": [
688           {
689             "type": "Object",
690             "optional": false,
691             "doc": "\n",
692             "name": "members"
693           }
694         ],
695         "name": "override",
696         "owner": "Ext.Base",
697         "doc": "<p>Override prototype members of this class. Overridden methods can be invoked via\n<a href=\"#/api/Ext.Base-method-callOverridden\" rel=\"Ext.Base-method-callOverridden\" class=\"docClass\">Ext.Base.callOverridden</a></p>\n\n<pre><code>Ext.define('My.Cat', {\n    constructor: function() {\n        alert(\"I'm a cat!\");\n\n        return this;\n    }\n});\n\nMy.Cat.override({\n    constructor: function() {\n        alert(\"I'm going to be a cat!\");\n\n        var instance = this.callOverridden();\n\n        alert(\"Meeeeoooowwww\");\n\n        return instance;\n    }\n});\n\nvar kitty = new My.Cat(); // alerts \"I'm going to be a cat!\"\n                          // alerts \"I'm a cat!\"\n                          // alerts \"Meeeeoooowwww\"\n</code></pre>\n",
698         "linenr": 518,
699         "return": {
700           "type": "Ext.Base",
701           "doc": "<p>this</p>\n"
702         },
703         "html_filename": "Base3.html"
704       },
705       {
706         "deprecated": null,
707         "alias": null,
708         "protected": false,
709         "tagname": "method",
710         "href": "EventObject.html#Ext-EventObject-method-preventDefault",
711         "shortDoc": "Prevents the browsers default handling of the event. ...",
712         "static": false,
713         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
714         "private": false,
715         "params": [
716
717         ],
718         "name": "preventDefault",
719         "owner": "Ext.EventObject",
720         "doc": "<p>Prevents the browsers default handling of the event.</p>\n",
721         "linenr": 344,
722         "return": {
723           "type": "void",
724           "doc": "\n"
725         },
726         "html_filename": "EventObject.html"
727       },
728       {
729         "deprecated": null,
730         "alias": null,
731         "protected": true,
732         "tagname": "method",
733         "href": "Base3.html#Ext-Base-method-statics",
734         "shortDoc": "Get the reference to the class from which this object was instantiated. ...",
735         "static": false,
736         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
737         "private": false,
738         "params": [
739
740         ],
741         "name": "statics",
742         "owner": "Ext.Base",
743         "doc": "<p>Get the reference to the class from which this object was instantiated. Note that unlike <a href=\"#/api/Ext.Base-property-self\" rel=\"Ext.Base-property-self\" class=\"docClass\">Ext.Base.self</a>,\n<code>this.statics()</code> is scope-independent and it always returns the class from which it was called, regardless of what\n<code>this</code> points to during run-time</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        totalCreated: 0,\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        var statics = this.statics();\n\n        alert(statics.speciesName);     // always equals to 'Cat' no matter what 'this' refers to\n                                        // equivalent to: My.Cat.speciesName\n\n        alert(this.self.speciesName);   // dependent on 'this'\n\n        statics.totalCreated++;\n\n        return this;\n    },\n\n    clone: function() {\n        var cloned = new this.self;                      // dependent on 'this'\n\n        cloned.groupName = this.statics().speciesName;   // equivalent to: My.Cat.speciesName\n\n        return cloned;\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n\n    statics: {\n        speciesName: 'Snow Leopard'     // My.SnowLeopard.speciesName = 'Snow Leopard'\n    },\n\n    constructor: function() {\n        this.callParent();\n    }\n});\n\nvar cat = new My.Cat();                 // alerts 'Cat', then alerts 'Cat'\n\nvar snowLeopard = new My.SnowLeopard(); // alerts 'Cat', then alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));         // alerts 'My.SnowLeopard'\nalert(clone.groupName);                 // alerts 'Cat'\n\nalert(My.Cat.totalCreated);             // alerts 3\n</code></pre>\n",
744         "linenr": 199,
745         "return": {
746           "type": "Class",
747           "doc": "\n"
748         },
749         "html_filename": "Base3.html"
750       },
751       {
752         "deprecated": null,
753         "alias": null,
754         "protected": false,
755         "tagname": "method",
756         "href": "EventObject.html#Ext-EventObject-method-stopEvent",
757         "shortDoc": "Stop the event (preventDefault and stopPropagation) ...",
758         "static": false,
759         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
760         "private": false,
761         "params": [
762
763         ],
764         "name": "stopEvent",
765         "owner": "Ext.EventObject",
766         "doc": "<p>Stop the event (preventDefault and stopPropagation)</p>\n",
767         "linenr": 336,
768         "return": {
769           "type": "void",
770           "doc": "\n"
771         },
772         "html_filename": "EventObject.html"
773       },
774       {
775         "deprecated": null,
776         "alias": null,
777         "protected": false,
778         "tagname": "method",
779         "href": "EventObject.html#Ext-EventObject-method-stopPropagation",
780         "shortDoc": "Cancels bubbling of the event. ...",
781         "static": false,
782         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
783         "private": false,
784         "params": [
785
786         ],
787         "name": "stopPropagation",
788         "owner": "Ext.EventObject",
789         "doc": "<p>Cancels bubbling of the event.</p>\n",
790         "linenr": 353,
791         "return": {
792           "type": "void",
793           "doc": "\n"
794         },
795         "html_filename": "EventObject.html"
796       },
797       {
798         "deprecated": null,
799         "alias": null,
800         "protected": false,
801         "tagname": "method",
802         "href": "EventObject.html#Ext-EventObject-method-within",
803         "shortDoc": "Returns true if the target of this event is a child of el. ...",
804         "static": false,
805         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
806         "private": false,
807         "params": [
808           {
809             "type": "Mixed",
810             "optional": false,
811             "doc": "<p>The id, DOM element or <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Ext.core.Element</a> to check</p>\n",
812             "name": "el"
813           },
814           {
815             "type": "Boolean",
816             "optional": true,
817             "doc": "<p>(optional) true to test if the related target is within el instead of the target</p>\n",
818             "name": "related"
819           },
820           {
821             "type": "Boolean",
822             "optional": false,
823             "doc": "<p>{optional} true to also check if the passed element is the target or related target</p>\n",
824             "name": "allowEl"
825           }
826         ],
827         "name": "within",
828         "owner": "Ext.EventObject",
829         "doc": "<p>Returns true if the target of this event is a child of el.  Unless the allowEl parameter is set, it will return false if if the target is el.\nExample usage:</p>\n\n<pre><code>// Handle click on any child of an element\nExt.getBody().on('click', function(e){\n    if(e.within('some-el')){\n        alert('Clicked on a child of some-el!');\n    }\n});\n\n// Handle click directly on an element, ignoring clicks on child nodes\nExt.getBody().on('click', function(e,t){\n    if((t.id == 'some-el') && !e.within(t, true)){\n        alert('Clicked directly on some-el!');\n    }\n});\n</code></pre>\n\n",
830         "linenr": 533,
831         "return": {
832           "type": "Boolean",
833           "doc": "\n"
834         },
835         "html_filename": "EventObject.html"
836       }
837     ],
838     "property": [
839       {
840         "type": "Number",
841         "deprecated": null,
842         "alias": null,
843         "protected": false,
844         "tagname": "property",
845         "href": "EventObject.html#Ext-EventObject-property-A",
846         "static": false,
847         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
848         "private": false,
849         "name": "A",
850         "owner": "Ext.EventObject",
851         "doc": "<p>Key constant</p>\n",
852         "linenr": 99,
853         "html_filename": "EventObject.html"
854       },
855       {
856         "type": "Number",
857         "deprecated": null,
858         "alias": null,
859         "protected": false,
860         "tagname": "property",
861         "href": "EventObject.html#Ext-EventObject-property-ALT",
862         "static": false,
863         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
864         "private": false,
865         "name": "ALT",
866         "owner": "Ext.EventObject",
867         "doc": "<p>Key constant</p>\n",
868         "linenr": 47,
869         "html_filename": "EventObject.html"
870       },
871       {
872         "type": "Number",
873         "deprecated": null,
874         "alias": null,
875         "protected": false,
876         "tagname": "property",
877         "href": "EventObject.html#Ext-EventObject-property-B",
878         "static": false,
879         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
880         "private": false,
881         "name": "B",
882         "owner": "Ext.EventObject",
883         "doc": "<p>Key constant</p>\n",
884         "linenr": 101,
885         "html_filename": "EventObject.html"
886       },
887       {
888         "type": "Number",
889         "deprecated": null,
890         "alias": null,
891         "protected": false,
892         "tagname": "property",
893         "href": "EventObject.html#Ext-EventObject-property-BACKSPACE",
894         "static": false,
895         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
896         "private": false,
897         "name": "BACKSPACE",
898         "owner": "Ext.EventObject",
899         "doc": "<p>Key constant</p>\n",
900         "linenr": 33,
901         "html_filename": "EventObject.html"
902       },
903       {
904         "type": "Number",
905         "deprecated": null,
906         "alias": null,
907         "protected": false,
908         "tagname": "property",
909         "href": "EventObject.html#Ext-EventObject-property-C",
910         "static": false,
911         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
912         "private": false,
913         "name": "C",
914         "owner": "Ext.EventObject",
915         "doc": "<p>Key constant</p>\n",
916         "linenr": 103,
917         "html_filename": "EventObject.html"
918       },
919       {
920         "type": "Number",
921         "deprecated": null,
922         "alias": null,
923         "protected": false,
924         "tagname": "property",
925         "href": "EventObject.html#Ext-EventObject-property-CAPS_LOCK",
926         "static": false,
927         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
928         "private": false,
929         "name": "CAPS_LOCK",
930         "owner": "Ext.EventObject",
931         "doc": "<p>Key constant</p>\n",
932         "linenr": 51,
933         "html_filename": "EventObject.html"
934       },
935       {
936         "type": "Number",
937         "deprecated": null,
938         "alias": null,
939         "protected": false,
940         "tagname": "property",
941         "href": "EventObject.html#Ext-EventObject-property-CONTEXT_MENU",
942         "static": false,
943         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
944         "private": false,
945         "name": "CONTEXT_MENU",
946         "owner": "Ext.EventObject",
947         "doc": "<p>Key constant</p>\n",
948         "linenr": 151,
949         "html_filename": "EventObject.html"
950       },
951       {
952         "type": "Number",
953         "deprecated": null,
954         "alias": null,
955         "protected": false,
956         "tagname": "property",
957         "href": "EventObject.html#Ext-EventObject-property-CTRL",
958         "static": false,
959         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
960         "private": false,
961         "name": "CTRL",
962         "owner": "Ext.EventObject",
963         "doc": "<p>Key constant</p>\n",
964         "linenr": 45,
965         "html_filename": "EventObject.html"
966       },
967       {
968         "type": "Number",
969         "deprecated": null,
970         "alias": null,
971         "protected": false,
972         "tagname": "property",
973         "href": "EventObject.html#Ext-EventObject-property-D",
974         "static": false,
975         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
976         "private": false,
977         "name": "D",
978         "owner": "Ext.EventObject",
979         "doc": "<p>Key constant</p>\n",
980         "linenr": 105,
981         "html_filename": "EventObject.html"
982       },
983       {
984         "type": "Number",
985         "deprecated": null,
986         "alias": null,
987         "protected": false,
988         "tagname": "property",
989         "href": "EventObject.html#Ext-EventObject-property-DELETE",
990         "static": false,
991         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
992         "private": false,
993         "name": "DELETE",
994         "owner": "Ext.EventObject",
995         "doc": "<p>Key constant</p>\n",
996         "linenr": 77,
997         "html_filename": "EventObject.html"
998       },
999       {
1000         "type": "Number",
1001         "deprecated": null,
1002         "alias": null,
1003         "protected": false,
1004         "tagname": "property",
1005         "href": "EventObject.html#Ext-EventObject-property-DOWN",
1006         "static": false,
1007         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1008         "private": false,
1009         "name": "DOWN",
1010         "owner": "Ext.EventObject",
1011         "doc": "<p>Key constant</p>\n",
1012         "linenr": 71,
1013         "html_filename": "EventObject.html"
1014       },
1015       {
1016         "type": "Number",
1017         "deprecated": null,
1018         "alias": null,
1019         "protected": false,
1020         "tagname": "property",
1021         "href": "EventObject.html#Ext-EventObject-property-E",
1022         "static": false,
1023         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1024         "private": false,
1025         "name": "E",
1026         "owner": "Ext.EventObject",
1027         "doc": "<p>Key constant</p>\n",
1028         "linenr": 107,
1029         "html_filename": "EventObject.html"
1030       },
1031       {
1032         "type": "Number",
1033         "deprecated": null,
1034         "alias": null,
1035         "protected": false,
1036         "tagname": "property",
1037         "href": "EventObject.html#Ext-EventObject-property-EIGHT",
1038         "static": false,
1039         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1040         "private": false,
1041         "name": "EIGHT",
1042         "owner": "Ext.EventObject",
1043         "doc": "<p>Key constant</p>\n",
1044         "linenr": 95,
1045         "html_filename": "EventObject.html"
1046       },
1047       {
1048         "type": "Number",
1049         "deprecated": null,
1050         "alias": null,
1051         "protected": false,
1052         "tagname": "property",
1053         "href": "EventObject.html#Ext-EventObject-property-END",
1054         "static": false,
1055         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1056         "private": false,
1057         "name": "END",
1058         "owner": "Ext.EventObject",
1059         "doc": "<p>Key constant</p>\n",
1060         "linenr": 61,
1061         "html_filename": "EventObject.html"
1062       },
1063       {
1064         "type": "Number",
1065         "deprecated": null,
1066         "alias": null,
1067         "protected": false,
1068         "tagname": "property",
1069         "href": "EventObject.html#Ext-EventObject-property-ENTER",
1070         "static": false,
1071         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1072         "private": false,
1073         "name": "ENTER",
1074         "owner": "Ext.EventObject",
1075         "doc": "<p>Key constant</p>\n",
1076         "linenr": 39,
1077         "html_filename": "EventObject.html"
1078       },
1079       {
1080         "type": "Number",
1081         "deprecated": null,
1082         "alias": null,
1083         "protected": false,
1084         "tagname": "property",
1085         "href": "EventObject.html#Ext-EventObject-property-ESC",
1086         "static": false,
1087         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1088         "private": false,
1089         "name": "ESC",
1090         "owner": "Ext.EventObject",
1091         "doc": "<p>Key constant</p>\n",
1092         "linenr": 53,
1093         "html_filename": "EventObject.html"
1094       },
1095       {
1096         "type": "Number",
1097         "deprecated": null,
1098         "alias": null,
1099         "protected": false,
1100         "tagname": "property",
1101         "href": "EventObject.html#Ext-EventObject-property-F",
1102         "static": false,
1103         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1104         "private": false,
1105         "name": "F",
1106         "owner": "Ext.EventObject",
1107         "doc": "<p>Key constant</p>\n",
1108         "linenr": 109,
1109         "html_filename": "EventObject.html"
1110       },
1111       {
1112         "type": "Number",
1113         "deprecated": null,
1114         "alias": null,
1115         "protected": false,
1116         "tagname": "property",
1117         "href": "EventObject.html#Ext-EventObject-property-F1",
1118         "static": false,
1119         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1120         "private": false,
1121         "name": "F1",
1122         "owner": "Ext.EventObject",
1123         "doc": "<p>Key constant</p>\n",
1124         "linenr": 183,
1125         "html_filename": "EventObject.html"
1126       },
1127       {
1128         "type": "Number",
1129         "deprecated": null,
1130         "alias": null,
1131         "protected": false,
1132         "tagname": "property",
1133         "href": "EventObject.html#Ext-EventObject-property-F10",
1134         "static": false,
1135         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1136         "private": false,
1137         "name": "F10",
1138         "owner": "Ext.EventObject",
1139         "doc": "<p>Key constant</p>\n",
1140         "linenr": 201,
1141         "html_filename": "EventObject.html"
1142       },
1143       {
1144         "type": "Number",
1145         "deprecated": null,
1146         "alias": null,
1147         "protected": false,
1148         "tagname": "property",
1149         "href": "EventObject.html#Ext-EventObject-property-F11",
1150         "static": false,
1151         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1152         "private": false,
1153         "name": "F11",
1154         "owner": "Ext.EventObject",
1155         "doc": "<p>Key constant</p>\n",
1156         "linenr": 203,
1157         "html_filename": "EventObject.html"
1158       },
1159       {
1160         "type": "Number",
1161         "deprecated": null,
1162         "alias": null,
1163         "protected": false,
1164         "tagname": "property",
1165         "href": "EventObject.html#Ext-EventObject-property-F12",
1166         "static": false,
1167         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1168         "private": false,
1169         "name": "F12",
1170         "owner": "Ext.EventObject",
1171         "doc": "<p>Key constant</p>\n",
1172         "linenr": 205,
1173         "html_filename": "EventObject.html"
1174       },
1175       {
1176         "type": "Number",
1177         "deprecated": null,
1178         "alias": null,
1179         "protected": false,
1180         "tagname": "property",
1181         "href": "EventObject.html#Ext-EventObject-property-F2",
1182         "static": false,
1183         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1184         "private": false,
1185         "name": "F2",
1186         "owner": "Ext.EventObject",
1187         "doc": "<p>Key constant</p>\n",
1188         "linenr": 185,
1189         "html_filename": "EventObject.html"
1190       },
1191       {
1192         "type": "Number",
1193         "deprecated": null,
1194         "alias": null,
1195         "protected": false,
1196         "tagname": "property",
1197         "href": "EventObject.html#Ext-EventObject-property-F3",
1198         "static": false,
1199         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1200         "private": false,
1201         "name": "F3",
1202         "owner": "Ext.EventObject",
1203         "doc": "<p>Key constant</p>\n",
1204         "linenr": 187,
1205         "html_filename": "EventObject.html"
1206       },
1207       {
1208         "type": "Number",
1209         "deprecated": null,
1210         "alias": null,
1211         "protected": false,
1212         "tagname": "property",
1213         "href": "EventObject.html#Ext-EventObject-property-F4",
1214         "static": false,
1215         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1216         "private": false,
1217         "name": "F4",
1218         "owner": "Ext.EventObject",
1219         "doc": "<p>Key constant</p>\n",
1220         "linenr": 189,
1221         "html_filename": "EventObject.html"
1222       },
1223       {
1224         "type": "Number",
1225         "deprecated": null,
1226         "alias": null,
1227         "protected": false,
1228         "tagname": "property",
1229         "href": "EventObject.html#Ext-EventObject-property-F5",
1230         "static": false,
1231         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1232         "private": false,
1233         "name": "F5",
1234         "owner": "Ext.EventObject",
1235         "doc": "<p>Key constant</p>\n",
1236         "linenr": 191,
1237         "html_filename": "EventObject.html"
1238       },
1239       {
1240         "type": "Number",
1241         "deprecated": null,
1242         "alias": null,
1243         "protected": false,
1244         "tagname": "property",
1245         "href": "EventObject.html#Ext-EventObject-property-F6",
1246         "static": false,
1247         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1248         "private": false,
1249         "name": "F6",
1250         "owner": "Ext.EventObject",
1251         "doc": "<p>Key constant</p>\n",
1252         "linenr": 193,
1253         "html_filename": "EventObject.html"
1254       },
1255       {
1256         "type": "Number",
1257         "deprecated": null,
1258         "alias": null,
1259         "protected": false,
1260         "tagname": "property",
1261         "href": "EventObject.html#Ext-EventObject-property-F7",
1262         "static": false,
1263         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1264         "private": false,
1265         "name": "F7",
1266         "owner": "Ext.EventObject",
1267         "doc": "<p>Key constant</p>\n",
1268         "linenr": 195,
1269         "html_filename": "EventObject.html"
1270       },
1271       {
1272         "type": "Number",
1273         "deprecated": null,
1274         "alias": null,
1275         "protected": false,
1276         "tagname": "property",
1277         "href": "EventObject.html#Ext-EventObject-property-F8",
1278         "static": false,
1279         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1280         "private": false,
1281         "name": "F8",
1282         "owner": "Ext.EventObject",
1283         "doc": "<p>Key constant</p>\n",
1284         "linenr": 197,
1285         "html_filename": "EventObject.html"
1286       },
1287       {
1288         "type": "Number",
1289         "deprecated": null,
1290         "alias": null,
1291         "protected": false,
1292         "tagname": "property",
1293         "href": "EventObject.html#Ext-EventObject-property-F9",
1294         "static": false,
1295         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1296         "private": false,
1297         "name": "F9",
1298         "owner": "Ext.EventObject",
1299         "doc": "<p>Key constant</p>\n",
1300         "linenr": 199,
1301         "html_filename": "EventObject.html"
1302       },
1303       {
1304         "type": "Number",
1305         "deprecated": null,
1306         "alias": null,
1307         "protected": false,
1308         "tagname": "property",
1309         "href": "EventObject.html#Ext-EventObject-property-FIVE",
1310         "static": false,
1311         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1312         "private": false,
1313         "name": "FIVE",
1314         "owner": "Ext.EventObject",
1315         "doc": "<p>Key constant</p>\n",
1316         "linenr": 89,
1317         "html_filename": "EventObject.html"
1318       },
1319       {
1320         "type": "Number",
1321         "deprecated": null,
1322         "alias": null,
1323         "protected": false,
1324         "tagname": "property",
1325         "href": "EventObject.html#Ext-EventObject-property-FOUR",
1326         "static": false,
1327         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1328         "private": false,
1329         "name": "FOUR",
1330         "owner": "Ext.EventObject",
1331         "doc": "<p>Key constant</p>\n",
1332         "linenr": 87,
1333         "html_filename": "EventObject.html"
1334       },
1335       {
1336         "type": "Number",
1337         "deprecated": null,
1338         "alias": null,
1339         "protected": false,
1340         "tagname": "property",
1341         "href": "EventObject.html#Ext-EventObject-property-G",
1342         "static": false,
1343         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1344         "private": false,
1345         "name": "G",
1346         "owner": "Ext.EventObject",
1347         "doc": "<p>Key constant</p>\n",
1348         "linenr": 111,
1349         "html_filename": "EventObject.html"
1350       },
1351       {
1352         "type": "Number",
1353         "deprecated": null,
1354         "alias": null,
1355         "protected": false,
1356         "tagname": "property",
1357         "href": "EventObject.html#Ext-EventObject-property-H",
1358         "static": false,
1359         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1360         "private": false,
1361         "name": "H",
1362         "owner": "Ext.EventObject",
1363         "doc": "<p>Key constant</p>\n",
1364         "linenr": 113,
1365         "html_filename": "EventObject.html"
1366       },
1367       {
1368         "type": "Number",
1369         "deprecated": null,
1370         "alias": null,
1371         "protected": false,
1372         "tagname": "property",
1373         "href": "EventObject.html#Ext-EventObject-property-HOME",
1374         "static": false,
1375         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1376         "private": false,
1377         "name": "HOME",
1378         "owner": "Ext.EventObject",
1379         "doc": "<p>Key constant</p>\n",
1380         "linenr": 63,
1381         "html_filename": "EventObject.html"
1382       },
1383       {
1384         "type": "Number",
1385         "deprecated": null,
1386         "alias": null,
1387         "protected": false,
1388         "tagname": "property",
1389         "href": "EventObject.html#Ext-EventObject-property-I",
1390         "static": false,
1391         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1392         "private": false,
1393         "name": "I",
1394         "owner": "Ext.EventObject",
1395         "doc": "<p>Key constant</p>\n",
1396         "linenr": 115,
1397         "html_filename": "EventObject.html"
1398       },
1399       {
1400         "type": "Number",
1401         "deprecated": null,
1402         "alias": null,
1403         "protected": false,
1404         "tagname": "property",
1405         "href": "EventObject.html#Ext-EventObject-property-INSERT",
1406         "static": false,
1407         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1408         "private": false,
1409         "name": "INSERT",
1410         "owner": "Ext.EventObject",
1411         "doc": "<p>Key constant</p>\n",
1412         "linenr": 75,
1413         "html_filename": "EventObject.html"
1414       },
1415       {
1416         "type": "Number",
1417         "deprecated": null,
1418         "alias": null,
1419         "protected": false,
1420         "tagname": "property",
1421         "href": "EventObject.html#Ext-EventObject-property-J",
1422         "static": false,
1423         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1424         "private": false,
1425         "name": "J",
1426         "owner": "Ext.EventObject",
1427         "doc": "<p>Key constant</p>\n",
1428         "linenr": 117,
1429         "html_filename": "EventObject.html"
1430       },
1431       {
1432         "type": "Number",
1433         "deprecated": null,
1434         "alias": null,
1435         "protected": false,
1436         "tagname": "property",
1437         "href": "EventObject.html#Ext-EventObject-property-K",
1438         "static": false,
1439         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1440         "private": false,
1441         "name": "K",
1442         "owner": "Ext.EventObject",
1443         "doc": "<p>Key constant</p>\n",
1444         "linenr": 119,
1445         "html_filename": "EventObject.html"
1446       },
1447       {
1448         "type": "Number",
1449         "deprecated": null,
1450         "alias": null,
1451         "protected": false,
1452         "tagname": "property",
1453         "href": "EventObject.html#Ext-EventObject-property-L",
1454         "static": false,
1455         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1456         "private": false,
1457         "name": "L",
1458         "owner": "Ext.EventObject",
1459         "doc": "<p>Key constant</p>\n",
1460         "linenr": 121,
1461         "html_filename": "EventObject.html"
1462       },
1463       {
1464         "type": "Number",
1465         "deprecated": null,
1466         "alias": null,
1467         "protected": false,
1468         "tagname": "property",
1469         "href": "EventObject.html#Ext-EventObject-property-LEFT",
1470         "static": false,
1471         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1472         "private": false,
1473         "name": "LEFT",
1474         "owner": "Ext.EventObject",
1475         "doc": "<p>Key constant</p>\n",
1476         "linenr": 65,
1477         "html_filename": "EventObject.html"
1478       },
1479       {
1480         "type": "Number",
1481         "deprecated": null,
1482         "alias": null,
1483         "protected": false,
1484         "tagname": "property",
1485         "href": "EventObject.html#Ext-EventObject-property-M",
1486         "static": false,
1487         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1488         "private": false,
1489         "name": "M",
1490         "owner": "Ext.EventObject",
1491         "doc": "<p>Key constant</p>\n",
1492         "linenr": 123,
1493         "html_filename": "EventObject.html"
1494       },
1495       {
1496         "type": "Number",
1497         "deprecated": null,
1498         "alias": null,
1499         "protected": false,
1500         "tagname": "property",
1501         "href": "EventObject.html#Ext-EventObject-property-N",
1502         "static": false,
1503         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1504         "private": false,
1505         "name": "N",
1506         "owner": "Ext.EventObject",
1507         "doc": "<p>Key constant</p>\n",
1508         "linenr": 125,
1509         "html_filename": "EventObject.html"
1510       },
1511       {
1512         "type": "Number",
1513         "deprecated": null,
1514         "alias": null,
1515         "protected": false,
1516         "tagname": "property",
1517         "href": "EventObject.html#Ext-EventObject-property-NINE",
1518         "static": false,
1519         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1520         "private": false,
1521         "name": "NINE",
1522         "owner": "Ext.EventObject",
1523         "doc": "<p>Key constant</p>\n",
1524         "linenr": 97,
1525         "html_filename": "EventObject.html"
1526       },
1527       {
1528         "type": "Number",
1529         "deprecated": null,
1530         "alias": null,
1531         "protected": false,
1532         "tagname": "property",
1533         "href": "EventObject.html#Ext-EventObject-property-NUM_CENTER",
1534         "static": false,
1535         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1536         "private": false,
1537         "name": "NUM_CENTER",
1538         "owner": "Ext.EventObject",
1539         "doc": "<p>Key constant</p>\n",
1540         "linenr": 37,
1541         "html_filename": "EventObject.html"
1542       },
1543       {
1544         "type": "Number",
1545         "deprecated": null,
1546         "alias": null,
1547         "protected": false,
1548         "tagname": "property",
1549         "href": "EventObject.html#Ext-EventObject-property-NUM_DIVISION",
1550         "static": false,
1551         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1552         "private": false,
1553         "name": "NUM_DIVISION",
1554         "owner": "Ext.EventObject",
1555         "doc": "<p>Key constant</p>\n",
1556         "linenr": 181,
1557         "html_filename": "EventObject.html"
1558       },
1559       {
1560         "type": "Number",
1561         "deprecated": null,
1562         "alias": null,
1563         "protected": false,
1564         "tagname": "property",
1565         "href": "EventObject.html#Ext-EventObject-property-NUM_EIGHT",
1566         "static": false,
1567         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1568         "private": false,
1569         "name": "NUM_EIGHT",
1570         "owner": "Ext.EventObject",
1571         "doc": "<p>Key constant</p>\n",
1572         "linenr": 169,
1573         "html_filename": "EventObject.html"
1574       },
1575       {
1576         "type": "Number",
1577         "deprecated": null,
1578         "alias": null,
1579         "protected": false,
1580         "tagname": "property",
1581         "href": "EventObject.html#Ext-EventObject-property-NUM_FIVE",
1582         "static": false,
1583         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1584         "private": false,
1585         "name": "NUM_FIVE",
1586         "owner": "Ext.EventObject",
1587         "doc": "<p>Key constant</p>\n",
1588         "linenr": 163,
1589         "html_filename": "EventObject.html"
1590       },
1591       {
1592         "type": "Number",
1593         "deprecated": null,
1594         "alias": null,
1595         "protected": false,
1596         "tagname": "property",
1597         "href": "EventObject.html#Ext-EventObject-property-NUM_FOUR",
1598         "static": false,
1599         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1600         "private": false,
1601         "name": "NUM_FOUR",
1602         "owner": "Ext.EventObject",
1603         "doc": "<p>Key constant</p>\n",
1604         "linenr": 161,
1605         "html_filename": "EventObject.html"
1606       },
1607       {
1608         "type": "Number",
1609         "deprecated": null,
1610         "alias": null,
1611         "protected": false,
1612         "tagname": "property",
1613         "href": "EventObject.html#Ext-EventObject-property-NUM_MINUS",
1614         "static": false,
1615         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1616         "private": false,
1617         "name": "NUM_MINUS",
1618         "owner": "Ext.EventObject",
1619         "doc": "<p>Key constant</p>\n",
1620         "linenr": 177,
1621         "html_filename": "EventObject.html"
1622       },
1623       {
1624         "type": "Number",
1625         "deprecated": null,
1626         "alias": null,
1627         "protected": false,
1628         "tagname": "property",
1629         "href": "EventObject.html#Ext-EventObject-property-NUM_MULTIPLY",
1630         "static": false,
1631         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1632         "private": false,
1633         "name": "NUM_MULTIPLY",
1634         "owner": "Ext.EventObject",
1635         "doc": "<p>Key constant</p>\n",
1636         "linenr": 173,
1637         "html_filename": "EventObject.html"
1638       },
1639       {
1640         "type": "Number",
1641         "deprecated": null,
1642         "alias": null,
1643         "protected": false,
1644         "tagname": "property",
1645         "href": "EventObject.html#Ext-EventObject-property-NUM_NINE",
1646         "static": false,
1647         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1648         "private": false,
1649         "name": "NUM_NINE",
1650         "owner": "Ext.EventObject",
1651         "doc": "<p>Key constant</p>\n",
1652         "linenr": 171,
1653         "html_filename": "EventObject.html"
1654       },
1655       {
1656         "type": "Number",
1657         "deprecated": null,
1658         "alias": null,
1659         "protected": false,
1660         "tagname": "property",
1661         "href": "EventObject.html#Ext-EventObject-property-NUM_ONE",
1662         "static": false,
1663         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1664         "private": false,
1665         "name": "NUM_ONE",
1666         "owner": "Ext.EventObject",
1667         "doc": "<p>Key constant</p>\n",
1668         "linenr": 155,
1669         "html_filename": "EventObject.html"
1670       },
1671       {
1672         "type": "Number",
1673         "deprecated": null,
1674         "alias": null,
1675         "protected": false,
1676         "tagname": "property",
1677         "href": "EventObject.html#Ext-EventObject-property-NUM_PERIOD",
1678         "static": false,
1679         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1680         "private": false,
1681         "name": "NUM_PERIOD",
1682         "owner": "Ext.EventObject",
1683         "doc": "<p>Key constant</p>\n",
1684         "linenr": 179,
1685         "html_filename": "EventObject.html"
1686       },
1687       {
1688         "type": "Number",
1689         "deprecated": null,
1690         "alias": null,
1691         "protected": false,
1692         "tagname": "property",
1693         "href": "EventObject.html#Ext-EventObject-property-NUM_PLUS",
1694         "static": false,
1695         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1696         "private": false,
1697         "name": "NUM_PLUS",
1698         "owner": "Ext.EventObject",
1699         "doc": "<p>Key constant</p>\n",
1700         "linenr": 175,
1701         "html_filename": "EventObject.html"
1702       },
1703       {
1704         "type": "Number",
1705         "deprecated": null,
1706         "alias": null,
1707         "protected": false,
1708         "tagname": "property",
1709         "href": "EventObject.html#Ext-EventObject-property-NUM_SEVEN",
1710         "static": false,
1711         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1712         "private": false,
1713         "name": "NUM_SEVEN",
1714         "owner": "Ext.EventObject",
1715         "doc": "<p>Key constant</p>\n",
1716         "linenr": 167,
1717         "html_filename": "EventObject.html"
1718       },
1719       {
1720         "type": "Number",
1721         "deprecated": null,
1722         "alias": null,
1723         "protected": false,
1724         "tagname": "property",
1725         "href": "EventObject.html#Ext-EventObject-property-NUM_SIX",
1726         "static": false,
1727         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1728         "private": false,
1729         "name": "NUM_SIX",
1730         "owner": "Ext.EventObject",
1731         "doc": "<p>Key constant</p>\n",
1732         "linenr": 165,
1733         "html_filename": "EventObject.html"
1734       },
1735       {
1736         "type": "Number",
1737         "deprecated": null,
1738         "alias": null,
1739         "protected": false,
1740         "tagname": "property",
1741         "href": "EventObject.html#Ext-EventObject-property-NUM_THREE",
1742         "static": false,
1743         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1744         "private": false,
1745         "name": "NUM_THREE",
1746         "owner": "Ext.EventObject",
1747         "doc": "<p>Key constant</p>\n",
1748         "linenr": 159,
1749         "html_filename": "EventObject.html"
1750       },
1751       {
1752         "type": "Number",
1753         "deprecated": null,
1754         "alias": null,
1755         "protected": false,
1756         "tagname": "property",
1757         "href": "EventObject.html#Ext-EventObject-property-NUM_TWO",
1758         "static": false,
1759         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1760         "private": false,
1761         "name": "NUM_TWO",
1762         "owner": "Ext.EventObject",
1763         "doc": "<p>Key constant</p>\n",
1764         "linenr": 157,
1765         "html_filename": "EventObject.html"
1766       },
1767       {
1768         "type": "Number",
1769         "deprecated": null,
1770         "alias": null,
1771         "protected": false,
1772         "tagname": "property",
1773         "href": "EventObject.html#Ext-EventObject-property-NUM_ZERO",
1774         "static": false,
1775         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1776         "private": false,
1777         "name": "NUM_ZERO",
1778         "owner": "Ext.EventObject",
1779         "doc": "<p>Key constant</p>\n",
1780         "linenr": 153,
1781         "html_filename": "EventObject.html"
1782       },
1783       {
1784         "type": "Number",
1785         "deprecated": null,
1786         "alias": null,
1787         "protected": false,
1788         "tagname": "property",
1789         "href": "EventObject.html#Ext-EventObject-property-O",
1790         "static": false,
1791         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1792         "private": false,
1793         "name": "O",
1794         "owner": "Ext.EventObject",
1795         "doc": "<p>Key constant</p>\n",
1796         "linenr": 127,
1797         "html_filename": "EventObject.html"
1798       },
1799       {
1800         "type": "Number",
1801         "deprecated": null,
1802         "alias": null,
1803         "protected": false,
1804         "tagname": "property",
1805         "href": "EventObject.html#Ext-EventObject-property-ONE",
1806         "static": false,
1807         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1808         "private": false,
1809         "name": "ONE",
1810         "owner": "Ext.EventObject",
1811         "doc": "<p>Key constant</p>\n",
1812         "linenr": 81,
1813         "html_filename": "EventObject.html"
1814       },
1815       {
1816         "type": "Number",
1817         "deprecated": null,
1818         "alias": null,
1819         "protected": false,
1820         "tagname": "property",
1821         "href": "EventObject.html#Ext-EventObject-property-P",
1822         "static": false,
1823         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1824         "private": false,
1825         "name": "P",
1826         "owner": "Ext.EventObject",
1827         "doc": "<p>Key constant</p>\n",
1828         "linenr": 129,
1829         "html_filename": "EventObject.html"
1830       },
1831       {
1832         "type": "Number",
1833         "deprecated": null,
1834         "alias": null,
1835         "protected": false,
1836         "tagname": "property",
1837         "href": "EventObject.html#Ext-EventObject-property-PAGE_DOWN",
1838         "static": false,
1839         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1840         "private": false,
1841         "name": "PAGE_DOWN",
1842         "owner": "Ext.EventObject",
1843         "doc": "<p>Key constant</p>\n",
1844         "linenr": 59,
1845         "html_filename": "EventObject.html"
1846       },
1847       {
1848         "type": "Number",
1849         "deprecated": null,
1850         "alias": null,
1851         "protected": false,
1852         "tagname": "property",
1853         "href": "EventObject.html#Ext-EventObject-property-PAGE_UP",
1854         "static": false,
1855         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1856         "private": false,
1857         "name": "PAGE_UP",
1858         "owner": "Ext.EventObject",
1859         "doc": "<p>Key constant</p>\n",
1860         "linenr": 57,
1861         "html_filename": "EventObject.html"
1862       },
1863       {
1864         "type": "Number",
1865         "deprecated": null,
1866         "alias": null,
1867         "protected": false,
1868         "tagname": "property",
1869         "href": "EventObject.html#Ext-EventObject-property-PAUSE",
1870         "static": false,
1871         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1872         "private": false,
1873         "name": "PAUSE",
1874         "owner": "Ext.EventObject",
1875         "doc": "<p>Key constant</p>\n",
1876         "linenr": 49,
1877         "html_filename": "EventObject.html"
1878       },
1879       {
1880         "type": "Number",
1881         "deprecated": null,
1882         "alias": null,
1883         "protected": false,
1884         "tagname": "property",
1885         "href": "EventObject.html#Ext-EventObject-property-PRINT_SCREEN",
1886         "static": false,
1887         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1888         "private": false,
1889         "name": "PRINT_SCREEN",
1890         "owner": "Ext.EventObject",
1891         "doc": "<p>Key constant</p>\n",
1892         "linenr": 73,
1893         "html_filename": "EventObject.html"
1894       },
1895       {
1896         "type": "Number",
1897         "deprecated": null,
1898         "alias": null,
1899         "protected": false,
1900         "tagname": "property",
1901         "href": "EventObject.html#Ext-EventObject-property-Q",
1902         "static": false,
1903         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1904         "private": false,
1905         "name": "Q",
1906         "owner": "Ext.EventObject",
1907         "doc": "<p>Key constant</p>\n",
1908         "linenr": 131,
1909         "html_filename": "EventObject.html"
1910       },
1911       {
1912         "type": "Number",
1913         "deprecated": null,
1914         "alias": null,
1915         "protected": false,
1916         "tagname": "property",
1917         "href": "EventObject.html#Ext-EventObject-property-R",
1918         "static": false,
1919         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1920         "private": false,
1921         "name": "R",
1922         "owner": "Ext.EventObject",
1923         "doc": "<p>Key constant</p>\n",
1924         "linenr": 133,
1925         "html_filename": "EventObject.html"
1926       },
1927       {
1928         "type": "Number",
1929         "deprecated": null,
1930         "alias": null,
1931         "protected": false,
1932         "tagname": "property",
1933         "href": "EventObject.html#Ext-EventObject-property-RETURN",
1934         "static": false,
1935         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1936         "private": false,
1937         "name": "RETURN",
1938         "owner": "Ext.EventObject",
1939         "doc": "<p>Key constant</p>\n",
1940         "linenr": 41,
1941         "html_filename": "EventObject.html"
1942       },
1943       {
1944         "type": "Number",
1945         "deprecated": null,
1946         "alias": null,
1947         "protected": false,
1948         "tagname": "property",
1949         "href": "EventObject.html#Ext-EventObject-property-RIGHT",
1950         "static": false,
1951         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1952         "private": false,
1953         "name": "RIGHT",
1954         "owner": "Ext.EventObject",
1955         "doc": "<p>Key constant</p>\n",
1956         "linenr": 69,
1957         "html_filename": "EventObject.html"
1958       },
1959       {
1960         "type": "Number",
1961         "deprecated": null,
1962         "alias": null,
1963         "protected": false,
1964         "tagname": "property",
1965         "href": "EventObject.html#Ext-EventObject-property-S",
1966         "static": false,
1967         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1968         "private": false,
1969         "name": "S",
1970         "owner": "Ext.EventObject",
1971         "doc": "<p>Key constant</p>\n",
1972         "linenr": 135,
1973         "html_filename": "EventObject.html"
1974       },
1975       {
1976         "type": "Number",
1977         "deprecated": null,
1978         "alias": null,
1979         "protected": false,
1980         "tagname": "property",
1981         "href": "EventObject.html#Ext-EventObject-property-SEVEN",
1982         "static": false,
1983         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
1984         "private": false,
1985         "name": "SEVEN",
1986         "owner": "Ext.EventObject",
1987         "doc": "<p>Key constant</p>\n",
1988         "linenr": 93,
1989         "html_filename": "EventObject.html"
1990       },
1991       {
1992         "type": "Number",
1993         "deprecated": null,
1994         "alias": null,
1995         "protected": false,
1996         "tagname": "property",
1997         "href": "EventObject.html#Ext-EventObject-property-SHIFT",
1998         "static": false,
1999         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2000         "private": false,
2001         "name": "SHIFT",
2002         "owner": "Ext.EventObject",
2003         "doc": "<p>Key constant</p>\n",
2004         "linenr": 43,
2005         "html_filename": "EventObject.html"
2006       },
2007       {
2008         "type": "Number",
2009         "deprecated": null,
2010         "alias": null,
2011         "protected": false,
2012         "tagname": "property",
2013         "href": "EventObject.html#Ext-EventObject-property-SIX",
2014         "static": false,
2015         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2016         "private": false,
2017         "name": "SIX",
2018         "owner": "Ext.EventObject",
2019         "doc": "<p>Key constant</p>\n",
2020         "linenr": 91,
2021         "html_filename": "EventObject.html"
2022       },
2023       {
2024         "type": "Number",
2025         "deprecated": null,
2026         "alias": null,
2027         "protected": false,
2028         "tagname": "property",
2029         "href": "EventObject.html#Ext-EventObject-property-SPACE",
2030         "static": false,
2031         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2032         "private": false,
2033         "name": "SPACE",
2034         "owner": "Ext.EventObject",
2035         "doc": "<p>Key constant</p>\n",
2036         "linenr": 55,
2037         "html_filename": "EventObject.html"
2038       },
2039       {
2040         "type": "Number",
2041         "deprecated": null,
2042         "alias": null,
2043         "protected": false,
2044         "tagname": "property",
2045         "href": "EventObject.html#Ext-EventObject-property-T",
2046         "static": false,
2047         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2048         "private": false,
2049         "name": "T",
2050         "owner": "Ext.EventObject",
2051         "doc": "<p>Key constant</p>\n",
2052         "linenr": 137,
2053         "html_filename": "EventObject.html"
2054       },
2055       {
2056         "type": "Number",
2057         "deprecated": null,
2058         "alias": null,
2059         "protected": false,
2060         "tagname": "property",
2061         "href": "EventObject.html#Ext-EventObject-property-TAB",
2062         "static": false,
2063         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2064         "private": false,
2065         "name": "TAB",
2066         "owner": "Ext.EventObject",
2067         "doc": "<p>Key constant</p>\n",
2068         "linenr": 35,
2069         "html_filename": "EventObject.html"
2070       },
2071       {
2072         "type": "Number",
2073         "deprecated": null,
2074         "alias": null,
2075         "protected": false,
2076         "tagname": "property",
2077         "href": "EventObject.html#Ext-EventObject-property-THREE",
2078         "static": false,
2079         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2080         "private": false,
2081         "name": "THREE",
2082         "owner": "Ext.EventObject",
2083         "doc": "<p>Key constant</p>\n",
2084         "linenr": 85,
2085         "html_filename": "EventObject.html"
2086       },
2087       {
2088         "type": "Number",
2089         "deprecated": null,
2090         "alias": null,
2091         "protected": false,
2092         "tagname": "property",
2093         "href": "EventObject.html#Ext-EventObject-property-TWO",
2094         "static": false,
2095         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2096         "private": false,
2097         "name": "TWO",
2098         "owner": "Ext.EventObject",
2099         "doc": "<p>Key constant</p>\n",
2100         "linenr": 83,
2101         "html_filename": "EventObject.html"
2102       },
2103       {
2104         "type": "Number",
2105         "deprecated": null,
2106         "alias": null,
2107         "protected": false,
2108         "tagname": "property",
2109         "href": "EventObject.html#Ext-EventObject-property-U",
2110         "static": false,
2111         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2112         "private": false,
2113         "name": "U",
2114         "owner": "Ext.EventObject",
2115         "doc": "<p>Key constant</p>\n",
2116         "linenr": 139,
2117         "html_filename": "EventObject.html"
2118       },
2119       {
2120         "type": "Number",
2121         "deprecated": null,
2122         "alias": null,
2123         "protected": false,
2124         "tagname": "property",
2125         "href": "EventObject.html#Ext-EventObject-property-UP",
2126         "static": false,
2127         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2128         "private": false,
2129         "name": "UP",
2130         "owner": "Ext.EventObject",
2131         "doc": "<p>Key constant</p>\n",
2132         "linenr": 67,
2133         "html_filename": "EventObject.html"
2134       },
2135       {
2136         "type": "Number",
2137         "deprecated": null,
2138         "alias": null,
2139         "protected": false,
2140         "tagname": "property",
2141         "href": "EventObject.html#Ext-EventObject-property-V",
2142         "static": false,
2143         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2144         "private": false,
2145         "name": "V",
2146         "owner": "Ext.EventObject",
2147         "doc": "<p>Key constant</p>\n",
2148         "linenr": 141,
2149         "html_filename": "EventObject.html"
2150       },
2151       {
2152         "type": "Number",
2153         "deprecated": null,
2154         "alias": null,
2155         "protected": false,
2156         "tagname": "property",
2157         "href": "EventObject.html#Ext-EventObject-property-W",
2158         "static": false,
2159         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2160         "private": false,
2161         "name": "W",
2162         "owner": "Ext.EventObject",
2163         "doc": "<p>Key constant</p>\n",
2164         "linenr": 143,
2165         "html_filename": "EventObject.html"
2166       },
2167       {
2168         "type": "Number",
2169         "deprecated": null,
2170         "alias": null,
2171         "protected": false,
2172         "tagname": "property",
2173         "href": "EventObject.html#Ext-EventObject-property-WHEEL_SCALE",
2174         "shortDoc": "The mouse wheel delta scaling factor. ...",
2175         "static": false,
2176         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2177         "private": false,
2178         "name": "WHEEL_SCALE",
2179         "owner": "Ext.EventObject",
2180         "doc": "<p>The mouse wheel delta scaling factor. This value depends on browser version and OS and\nattempts to produce a similar scrolling experience across all platforms and browsers.</p>\n\n<p>To change this value:</p>\n\n<pre><code> Ext.EventObjectImpl.prototype.WHEEL_SCALE = 72;\n</code></pre>\n",
2181         "linenr": 207,
2182         "html_filename": "EventObject.html"
2183       },
2184       {
2185         "type": "Number",
2186         "deprecated": null,
2187         "alias": null,
2188         "protected": false,
2189         "tagname": "property",
2190         "href": "EventObject.html#Ext-EventObject-property-X",
2191         "static": false,
2192         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2193         "private": false,
2194         "name": "X",
2195         "owner": "Ext.EventObject",
2196         "doc": "<p>Key constant</p>\n",
2197         "linenr": 145,
2198         "html_filename": "EventObject.html"
2199       },
2200       {
2201         "type": "Number",
2202         "deprecated": null,
2203         "alias": null,
2204         "protected": false,
2205         "tagname": "property",
2206         "href": "EventObject.html#Ext-EventObject-property-Y",
2207         "static": false,
2208         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2209         "private": false,
2210         "name": "Y",
2211         "owner": "Ext.EventObject",
2212         "doc": "<p>Key constant</p>\n",
2213         "linenr": 147,
2214         "html_filename": "EventObject.html"
2215       },
2216       {
2217         "type": "Number",
2218         "deprecated": null,
2219         "alias": null,
2220         "protected": false,
2221         "tagname": "property",
2222         "href": "EventObject.html#Ext-EventObject-property-Z",
2223         "static": false,
2224         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2225         "private": false,
2226         "name": "Z",
2227         "owner": "Ext.EventObject",
2228         "doc": "<p>Key constant</p>\n",
2229         "linenr": 149,
2230         "html_filename": "EventObject.html"
2231       },
2232       {
2233         "type": "Number",
2234         "deprecated": null,
2235         "alias": null,
2236         "protected": false,
2237         "tagname": "property",
2238         "href": "EventObject.html#Ext-EventObject-property-ZERO",
2239         "static": false,
2240         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2241         "private": false,
2242         "name": "ZERO",
2243         "owner": "Ext.EventObject",
2244         "doc": "<p>Key constant</p>\n",
2245         "linenr": 79,
2246         "html_filename": "EventObject.html"
2247       },
2248       {
2249         "type": "Class",
2250         "deprecated": null,
2251         "alias": null,
2252         "protected": true,
2253         "tagname": "property",
2254         "href": "Base3.html#Ext-Base-property-self",
2255         "shortDoc": "Get the reference to the current class from which this object was instantiated. ...",
2256         "static": false,
2257         "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js",
2258         "private": false,
2259         "name": "self",
2260         "owner": "Ext.Base",
2261         "doc": "<p>Get the reference to the current class from which this object was instantiated. Unlike <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>,\n<code>this.self</code> is scope-dependent and it's meant to be used for dynamic inheritance. See <a href=\"#/api/Ext.Base-method-statics\" rel=\"Ext.Base-method-statics\" class=\"docClass\">Ext.Base.statics</a>\nfor a detailed comparison</p>\n\n<pre><code>Ext.define('My.Cat', {\n    statics: {\n        speciesName: 'Cat' // My.Cat.speciesName = 'Cat'\n    },\n\n    constructor: function() {\n        alert(this.self.speciesName); / dependent on 'this'\n\n        return this;\n    },\n\n    clone: function() {\n        return new this.self();\n    }\n});\n\n\nExt.define('My.SnowLeopard', {\n    extend: 'My.Cat',\n    statics: {\n        speciesName: 'Snow Leopard'         // My.SnowLeopard.speciesName = 'Snow Leopard'\n    }\n});\n\nvar cat = new My.Cat();                     // alerts 'Cat'\nvar snowLeopard = new My.SnowLeopard();     // alerts 'Snow Leopard'\n\nvar clone = snowLeopard.clone();\nalert(Ext.getClassName(clone));             // alerts 'My.SnowLeopard'\n</code></pre>\n",
2262         "linenr": 18,
2263         "html_filename": "Base3.html"
2264       }
2265     ],
2266     "cssVar": [
2267
2268     ],
2269     "cssMixin": [
2270
2271     ],
2272     "event": [
2273
2274     ]
2275   },
2276   "singleton": true,
2277   "alias": null,
2278   "superclasses": [
2279     "Ext.Base"
2280   ],
2281   "protected": false,
2282   "tagname": "class",
2283   "mixins": [
2284
2285   ],
2286   "href": "EventObject.html#Ext-EventObject",
2287   "subclasses": [
2288
2289   ],
2290   "static": false,
2291   "author": null,
2292   "component": false,
2293   "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js",
2294   "private": false,
2295   "alternateClassNames": [
2296
2297   ],
2298   "name": "Ext.EventObject",
2299   "doc": "<p>Just as <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Ext.core.Element</a> wraps around a native DOM node, <a href=\"#/api/Ext.EventObject\" rel=\"Ext.EventObject\" class=\"docClass\">Ext.EventObject</a>\nwraps the browser's native event-object normalizing cross-browser differences,\nsuch as which mouse button is clicked, keys pressed, mechanisms to stop\nevent-propagation along with a method to prevent default actions from taking place.</p>\n\n<p>For example:</p>\n\n<pre><code>function handleClick(e, t){ // e is not a standard event object, it is a <a href=\"#/api/Ext.EventObject\" rel=\"Ext.EventObject\" class=\"docClass\">Ext.EventObject</a>\n    e.preventDefault();\n    var target = e.getTarget(); // same as t (the target HTMLElement)\n    ...\n}\n\nvar myDiv = <a href=\"#/api/Ext-method-get\" rel=\"Ext-method-get\" class=\"docClass\">Ext.get</a>(\"myDiv\");  // get reference to an <a href=\"#/api/Ext.core.Element\" rel=\"Ext.core.Element\" class=\"docClass\">Ext.core.Element</a>\nmyDiv.on(         // 'on' is shorthand for addListener\n    \"click\",      // perform an action on click of myDiv\n    handleClick   // reference to the action handler\n);\n\n// other methods to do the same:\nExt.EventManager.on(\"myDiv\", 'click', handleClick);\nExt.EventManager.addListener(\"myDiv\", 'click', handleClick);\n</code></pre>\n",
2300   "mixedInto": [
2301
2302   ],
2303   "linenr": 1,
2304   "xtypes": [
2305
2306   ],
2307   "html_filename": "EventObject.html",
2308   "extends": "Ext.Base"
2309 });