X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..HEAD:/docs/output/Ext.EventObject.js diff --git a/docs/output/Ext.EventObject.js b/docs/output/Ext.EventObject.js index 032fd890..03001ab5 100644 --- a/docs/output/Ext.EventObject.js +++ b/docs/output/Ext.EventObject.js @@ -1,2309 +1 @@ -Ext.data.JsonP.Ext_EventObject({ - "allMixins": [ - - ], - "deprecated": null, - "docauthor": null, - "members": { - "cfg": [ - - ], - "method": [ - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-addStatics", - "shortDoc": "Add / override static properties of this class. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "members" - } - ], - "name": "addStatics", - "owner": "Ext.Base", - "doc": "

Add / override static properties of this class.

\n\n
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
\n", - "linenr": 388, - "return": { - "type": "Ext.Base", - "doc": "

this

\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-callOverridden", - "shortDoc": "Call the original method that was previously overridden with Ext.Base.override\n\nExt.define('My.Cat', {\n constructo...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Array/Arguments", - "optional": false, - "doc": "

The arguments, either an array or the arguments object

\n", - "name": "args" - } - ], - "name": "callOverridden", - "owner": "Ext.Base", - "doc": "

Call the original method that was previously overridden with Ext.Base.override

\n\n
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
\n", - "linenr": 269, - "return": { - "type": "Mixed", - "doc": "

Returns the result after calling the overridden method

\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": true, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-callParent", - "shortDoc": "Call the parent's overridden method. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Array/Arguments", - "optional": false, - "doc": "

The arguments, either an array or the arguments object\nfrom the current method, for example: this.callParent(arguments)

\n", - "name": "args" - } - ], - "name": "callParent", - "owner": "Ext.Base", - "doc": "

Call the parent's overridden method. For example:

\n\n
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
\n", - "linenr": 124, - "return": { - "type": "Mixed", - "doc": "

Returns the result from the superclass' method

\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-correctWheelDelta", - "shortDoc": "Correctly scales a given wheel delta. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - { - "type": "Number", - "optional": false, - "doc": "

The delta value.

\n", - "name": "delta" - } - ], - "name": "correctWheelDelta", - "owner": "Ext.EventObject", - "doc": "

Correctly scales a given wheel delta.

\n", - "linenr": 468, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-create", - "shortDoc": "Create a new instance of this Class. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - - ], - "name": "create", - "owner": "Ext.Base", - "doc": "

Create a new instance of this Class.

\n\n
Ext.define('My.cool.Class', {\n    ...\n});\n\nMy.cool.Class.create({\n    someConfig: true\n});\n
\n\n

All parameters are passed to the constructor of the class.

\n", - "linenr": 329, - "return": { - "type": "Object", - "doc": "

the created instance.

\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-createAlias", - "shortDoc": "Create aliases for existing prototype methods. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "String/Object", - "optional": false, - "doc": "

The new method name, or an object to set multiple aliases. See\nflexSetter

\n", - "name": "alias" - }, - { - "type": "String/Object", - "optional": false, - "doc": "

The original method name

\n", - "name": "origin" - } - ], - "name": "createAlias", - "owner": "Ext.Base", - "doc": "

Create aliases for existing prototype methods. Example:

\n\n
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() -> test.method1()\n
\n", - "linenr": 648, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getCharCode", - "shortDoc": "Gets the character code for the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getCharCode", - "owner": "Ext.EventObject", - "doc": "

Gets the character code for the event.

\n", - "linenr": 367, - "return": { - "type": "Number", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getKey", - "shortDoc": "Returns a normalized keyCode for the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getKey", - "owner": "Ext.EventObject", - "doc": "

Returns a normalized keyCode for the event.

\n", - "linenr": 375, - "return": { - "type": "Number", - "doc": "

The key code

\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-getName", - "shortDoc": "Get the current class' name in string format. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - - ], - "name": "getName", - "owner": "Ext.Base", - "doc": "

Get the current class' name in string format.

\n\n
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
\n", - "linenr": 631, - "return": { - "type": "String", - "doc": "

className

\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": { - "version": "4.0", - "text": "

Replaced by getX

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getPageX", - "shortDoc": "Gets the x coordinate of the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getPageX", - "owner": "Ext.EventObject", - "doc": "

Gets the x coordinate of the event.

\n", - "linenr": 394, - "return": { - "type": "Number", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": { - "version": "4.0", - "text": "

Replaced by getY

\n", - "tagname": "deprecated", - "doc": null - }, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getPageY", - "shortDoc": "Gets the y coordinate of the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getPageY", - "owner": "Ext.EventObject", - "doc": "

Gets the y coordinate of the event.

\n", - "linenr": 403, - "return": { - "type": "Number", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getPoint", - "shortDoc": "Returns a point object that consists of the object coordinates. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getPoint", - "owner": "Ext.EventObject", - "doc": "

Returns a point object that consists of the object coordinates.

\n", - "linenr": 598, - "return": { - "type": "Ext.util.Point", - "doc": "

point

\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getRelatedTarget", - "shortDoc": "Gets the related target. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - { - "type": "String", - "optional": true, - "doc": "

(optional) A simple selector to filter the target or look for an ancestor of the target

\n", - "name": "selector" - }, - { - "type": "Number/Mixed", - "optional": true, - "doc": "

(optional) The max depth to search as a number or element (defaults to 10 || document.body)

\n", - "name": "maxDepth" - }, - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) True to return a Ext.core.Element object instead of DOM node

\n", - "name": "returnEl" - } - ], - "name": "getRelatedTarget", - "owner": "Ext.EventObject", - "doc": "

Gets the related target.

\n", - "linenr": 454, - "return": { - "type": "HTMLElement", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getTarget", - "shortDoc": "Gets the target for the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - { - "type": "String", - "optional": true, - "doc": "

(optional) A simple selector to filter the target or look for an ancestor of the target

\n", - "name": "selector" - }, - { - "type": "Number/Mixed", - "optional": true, - "doc": "

(optional) The max depth to search as a number or element (defaults to 10 || document.body)

\n", - "name": "maxDepth" - }, - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) True to return a Ext.core.Element object instead of DOM node

\n", - "name": "returnEl" - } - ], - "name": "getTarget", - "owner": "Ext.EventObject", - "doc": "

Gets the target for the event.

\n", - "linenr": 440, - "return": { - "type": "HTMLelement", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getWheelDelta", - "shortDoc": "Normalizes mouse wheel y-delta across browsers. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getWheelDelta", - "owner": "Ext.EventObject", - "doc": "

Normalizes mouse wheel y-delta across browsers. To get x-delta information, use\ngetWheelDeltas instead.

\n", - "linenr": 522, - "return": { - "type": "Number", - "doc": "

The mouse wheel y-delta

\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getWheelDeltas", - "shortDoc": "Returns the mouse wheel deltas for this event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getWheelDeltas", - "owner": "Ext.EventObject", - "doc": "

Returns the mouse wheel deltas for this event.

\n", - "linenr": 483, - "return": { - "type": "Object", - "doc": "

An object with \"x\" and \"y\" properties holding the mouse wheel deltas.

\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getX", - "shortDoc": "Gets the x coordinate of the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getX", - "owner": "Ext.EventObject", - "doc": "

Gets the x coordinate of the event.

\n", - "linenr": 412, - "return": { - "type": "Number", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getXY", - "shortDoc": "Gets the page coordinates of the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getXY", - "owner": "Ext.EventObject", - "doc": "

Gets the page coordinates of the event.

\n", - "linenr": 428, - "return": { - "type": "Array", - "doc": "

The xy values like [x, y]

\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-getY", - "shortDoc": "Gets the y coordinate of the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "getY", - "owner": "Ext.EventObject", - "doc": "

Gets the y coordinate of the event.

\n", - "linenr": 420, - "return": { - "type": "Number", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-hasModifier", - "shortDoc": "Returns true if the control, meta, shift or alt key was pressed during this event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "hasModifier", - "owner": "Ext.EventObject", - "doc": "

Returns true if the control, meta, shift or alt key was pressed during this event.

\n", - "linenr": 607, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-implement", - "shortDoc": "Add methods / properties to the prototype of this class. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "members" - } - ], - "name": "implement", - "owner": "Ext.Base", - "doc": "

Add methods / properties to the prototype of this class.

\n\n
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
\n", - "linenr": 415, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": true, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-initConfig", - "shortDoc": "Initialize configuration for this class. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "config" - } - ], - "name": "initConfig", - "owner": "Ext.Base", - "doc": "

Initialize configuration for this class. a typical example:

\n\n
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
\n", - "linenr": 63, - "return": { - "type": "Object", - "doc": "

mixins The mixin prototypes as key - value pairs

\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-injectEvent", - "shortDoc": "Injects a DOM event using the data in this object and (optionally) a new target. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - { - "type": "Element/HTMLElement", - "optional": false, - "doc": "

If specified, the target for the event. This\nis likely to be used when relaying a DOM event. If not specified, getTarget\nis used to determine the target.

\n", - "name": "target" - } - ], - "name": "injectEvent", - "owner": "Ext.EventObject", - "doc": "

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:

\n\n

HTMLEvents

\n\n\n\n\n\n

MouseEvents

\n\n\n\n\n\n

UIEvents

\n\n\n\n\n", - "linenr": 615, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-isNavKeyPress", - "shortDoc": "Checks if the key pressed was a \"navigation\" key ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "isNavKeyPress", - "owner": "Ext.EventObject", - "doc": "

Checks if the key pressed was a \"navigation\" key

\n", - "linenr": 571, - "return": { - "type": "Boolean", - "doc": "

True if the press is a navigation keypress

\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-isSpecialKey", - "shortDoc": "Checks if the key pressed was a \"special\" key ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "isSpecialKey", - "owner": "Ext.EventObject", - "doc": "

Checks if the key pressed was a \"special\" key

\n", - "linenr": 585, - "return": { - "type": "Boolean", - "doc": "

True if the press is a special keypress

\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-override", - "shortDoc": "Override prototype members of this class. ...", - "static": true, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - { - "type": "Object", - "optional": false, - "doc": "\n", - "name": "members" - } - ], - "name": "override", - "owner": "Ext.Base", - "doc": "

Override prototype members of this class. Overridden methods can be invoked via\nExt.Base.callOverridden

\n\n
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
\n", - "linenr": 518, - "return": { - "type": "Ext.Base", - "doc": "

this

\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-preventDefault", - "shortDoc": "Prevents the browsers default handling of the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "preventDefault", - "owner": "Ext.EventObject", - "doc": "

Prevents the browsers default handling of the event.

\n", - "linenr": 344, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": true, - "tagname": "method", - "href": "Base3.html#Ext-Base-method-statics", - "shortDoc": "Get the reference to the class from which this object was instantiated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "params": [ - - ], - "name": "statics", - "owner": "Ext.Base", - "doc": "

Get the reference to the class from which this object was instantiated. Note that unlike Ext.Base.self,\nthis.statics() is scope-independent and it always returns the class from which it was called, regardless of what\nthis points to during run-time

\n\n
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
\n", - "linenr": 199, - "return": { - "type": "Class", - "doc": "\n" - }, - "html_filename": "Base3.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-stopEvent", - "shortDoc": "Stop the event (preventDefault and stopPropagation) ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "stopEvent", - "owner": "Ext.EventObject", - "doc": "

Stop the event (preventDefault and stopPropagation)

\n", - "linenr": 336, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-stopPropagation", - "shortDoc": "Cancels bubbling of the event. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - - ], - "name": "stopPropagation", - "owner": "Ext.EventObject", - "doc": "

Cancels bubbling of the event.

\n", - "linenr": 353, - "return": { - "type": "void", - "doc": "\n" - }, - "html_filename": "EventObject.html" - }, - { - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "method", - "href": "EventObject.html#Ext-EventObject-method-within", - "shortDoc": "Returns true if the target of this event is a child of el. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "params": [ - { - "type": "Mixed", - "optional": false, - "doc": "

The id, DOM element or Ext.core.Element to check

\n", - "name": "el" - }, - { - "type": "Boolean", - "optional": true, - "doc": "

(optional) true to test if the related target is within el instead of the target

\n", - "name": "related" - }, - { - "type": "Boolean", - "optional": false, - "doc": "

{optional} true to also check if the passed element is the target or related target

\n", - "name": "allowEl" - } - ], - "name": "within", - "owner": "Ext.EventObject", - "doc": "

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:

\n\n
// 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
\n\n", - "linenr": 533, - "return": { - "type": "Boolean", - "doc": "\n" - }, - "html_filename": "EventObject.html" - } - ], - "property": [ - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-A", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "A", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 99, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-ALT", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "ALT", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 47, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-B", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "B", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 101, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-BACKSPACE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "BACKSPACE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 33, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-C", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "C", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 103, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-CAPS_LOCK", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "CAPS_LOCK", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 51, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-CONTEXT_MENU", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "CONTEXT_MENU", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 151, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-CTRL", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "CTRL", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 45, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-D", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "D", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 105, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-DELETE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "DELETE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 77, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-DOWN", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "DOWN", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 71, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-E", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "E", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 107, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-EIGHT", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "EIGHT", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 95, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-END", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "END", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 61, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-ENTER", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "ENTER", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 39, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-ESC", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "ESC", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 53, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 109, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F1", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F1", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 183, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F10", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F10", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 201, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F11", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F11", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 203, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F12", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F12", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 205, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F2", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F2", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 185, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F3", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F3", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 187, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F4", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F4", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 189, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F5", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F5", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 191, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F6", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F6", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 193, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F7", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F7", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 195, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F8", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F8", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 197, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-F9", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "F9", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 199, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-FIVE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "FIVE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 89, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-FOUR", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "FOUR", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 87, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-G", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "G", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 111, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-H", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "H", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 113, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-HOME", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "HOME", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 63, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-I", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "I", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 115, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-INSERT", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "INSERT", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 75, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-J", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "J", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 117, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-K", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "K", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 119, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-L", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "L", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 121, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-LEFT", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "LEFT", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 65, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-M", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "M", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 123, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-N", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "N", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 125, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NINE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NINE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 97, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_CENTER", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_CENTER", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 37, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_DIVISION", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_DIVISION", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 181, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_EIGHT", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_EIGHT", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 169, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_FIVE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_FIVE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 163, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_FOUR", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_FOUR", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 161, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_MINUS", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_MINUS", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 177, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_MULTIPLY", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_MULTIPLY", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 173, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_NINE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_NINE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 171, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_ONE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_ONE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 155, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_PERIOD", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_PERIOD", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 179, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_PLUS", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_PLUS", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 175, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_SEVEN", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_SEVEN", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 167, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_SIX", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_SIX", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 165, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_THREE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_THREE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 159, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_TWO", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_TWO", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 157, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-NUM_ZERO", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "NUM_ZERO", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 153, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-O", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "O", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 127, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-ONE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "ONE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 81, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-P", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "P", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 129, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-PAGE_DOWN", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "PAGE_DOWN", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 59, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-PAGE_UP", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "PAGE_UP", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 57, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-PAUSE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "PAUSE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 49, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-PRINT_SCREEN", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "PRINT_SCREEN", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 73, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-Q", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "Q", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 131, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-R", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "R", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 133, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-RETURN", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "RETURN", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 41, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-RIGHT", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "RIGHT", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 69, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-S", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "S", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 135, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-SEVEN", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "SEVEN", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 93, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-SHIFT", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "SHIFT", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 43, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-SIX", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "SIX", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 91, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-SPACE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "SPACE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 55, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-T", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "T", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 137, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-TAB", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "TAB", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 35, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-THREE", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "THREE", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 85, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-TWO", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "TWO", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 83, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-U", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "U", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 139, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-UP", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "UP", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 67, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-V", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "V", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 141, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-W", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "W", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 143, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-WHEEL_SCALE", - "shortDoc": "The mouse wheel delta scaling factor. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "WHEEL_SCALE", - "owner": "Ext.EventObject", - "doc": "

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.

\n\n

To change this value:

\n\n
 Ext.EventObjectImpl.prototype.WHEEL_SCALE = 72;\n
\n", - "linenr": 207, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-X", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "X", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 145, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-Y", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "Y", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 147, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-Z", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "Z", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 149, - "html_filename": "EventObject.html" - }, - { - "type": "Number", - "deprecated": null, - "alias": null, - "protected": false, - "tagname": "property", - "href": "EventObject.html#Ext-EventObject-property-ZERO", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "name": "ZERO", - "owner": "Ext.EventObject", - "doc": "

Key constant

\n", - "linenr": 79, - "html_filename": "EventObject.html" - }, - { - "type": "Class", - "deprecated": null, - "alias": null, - "protected": true, - "tagname": "property", - "href": "Base3.html#Ext-Base-property-self", - "shortDoc": "Get the reference to the current class from which this object was instantiated. ...", - "static": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/class/Base.js", - "private": false, - "name": "self", - "owner": "Ext.Base", - "doc": "

Get the reference to the current class from which this object was instantiated. Unlike Ext.Base.statics,\nthis.self is scope-dependent and it's meant to be used for dynamic inheritance. See Ext.Base.statics\nfor a detailed comparison

\n\n
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
\n", - "linenr": 18, - "html_filename": "Base3.html" - } - ], - "cssVar": [ - - ], - "cssMixin": [ - - ], - "event": [ - - ] - }, - "singleton": true, - "alias": null, - "superclasses": [ - "Ext.Base" - ], - "protected": false, - "tagname": "class", - "mixins": [ - - ], - "href": "EventObject.html#Ext-EventObject", - "subclasses": [ - - ], - "static": false, - "author": null, - "component": false, - "filename": "/mnt/ebs/nightly/git/SDK/platform/core/src/EventObject.js", - "private": false, - "alternateClassNames": [ - - ], - "name": "Ext.EventObject", - "doc": "

Just as Ext.core.Element wraps around a native DOM node, Ext.EventObject\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.

\n\n

For example:

\n\n
function handleClick(e, t){ // e is not a standard event object, it is a Ext.EventObject\n    e.preventDefault();\n    var target = e.getTarget(); // same as t (the target HTMLElement)\n    ...\n}\n\nvar myDiv = Ext.get(\"myDiv\");  // get reference to an Ext.core.Element\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
\n", - "mixedInto": [ - - ], - "linenr": 1, - "xtypes": [ - - ], - "html_filename": "EventObject.html", - "extends": "Ext.Base" -}); \ No newline at end of file +Ext.data.JsonP.Ext_EventObject({"tagname":"class","html":"

Hierarchy

Ext.Base
Ext.EventObject

Uses

Files

Just as Ext.Element wraps around a native DOM node, Ext.EventObject\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.

\n\n

For example:

\n\n
function handleClick(e, t){ // e is not a standard event object, it is a Ext.EventObject\n    e.preventDefault();\n    var target = e.getTarget(); // same as t (the target HTMLElement)\n    ...\n}\n\nvar myDiv = Ext.get(\"myDiv\");  // get reference to an Ext.Element\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
\n
Defined By

Properties

 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
The mouse wheel delta scaling factor. ...

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.

\n\n

To change this value:

\n\n
 Ext.EventObjectImpl.prototype.WHEEL_SCALE = 72;\n
\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
 

Key constant

\n

Key constant

\n
Get the reference to the current class from which this object was instantiated. ...

Get the reference to the current class from which this object was instantiated. Unlike statics,\nthis.self is scope-dependent and it's meant to be used for dynamic inheritance. See statics\nfor a detailed comparison

\n\n
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
\n
Defined By

Methods

( Array/Arguments args ) : Objectprotected
Call the original method that was previously overridden with override\n\nExt.define('My.Cat', {\n constructor: functi...

Call the original method that was previously overridden with override

\n\n
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
\n

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object

    \n

Returns

  • Object

    Returns the result after calling the overridden method

    \n
( Array/Arguments args ) : Objectprotected
Call the parent's overridden method. ...

Call the parent's overridden method. For example:

\n\n
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
\n

Parameters

  • args : Array/Arguments

    The arguments, either an array or the arguments object\nfrom the current method, for example: this.callParent(arguments)

    \n

Returns

  • Object

    Returns the result from the superclass' method

    \n
Correctly scales a given wheel delta. ...

Correctly scales a given wheel delta.

\n

Parameters

  • delta : Number

    The delta value.

    \n
Gets the character code for the event. ...

Gets the character code for the event.

\n

Returns

Returns a normalized keyCode for the event. ...

Returns a normalized keyCode for the event.

\n

Returns

Gets the x coordinate of the event. ...

Gets the x coordinate of the event.

\n

This method has been deprecated since 4.0

Replaced by getX

\n

Returns

Gets the y coordinate of the event. ...

Gets the y coordinate of the event.

\n

This method has been deprecated since 4.0

Replaced by getY

\n

Returns

Returns a point object that consists of the object coordinates. ...

Returns a point object that consists of the object coordinates.

\n

Returns

( [String selector], [Number/HTMLElement maxDepth], [Boolean returnEl] ) : HTMLElement
Gets the related target. ...

Gets the related target.

\n

Parameters

  • selector : String (optional)

    A simple selector to filter the target or look for an ancestor of the target

    \n
  • maxDepth : Number/HTMLElement (optional)

    The max depth to search as a number or element (defaults to 10 || document.body)

    \n
  • returnEl : Boolean (optional)

    True to return a Ext.Element object instead of DOM node

    \n

Returns

  • HTMLElement
    \n
( [String selector], [Number/HTMLElement maxDepth], [Boolean returnEl] ) : HTMLElement
Gets the target for the event. ...

Gets the target for the event.

\n

Parameters

  • selector : String (optional)

    A simple selector to filter the target or look for an ancestor of the target

    \n
  • maxDepth : Number/HTMLElement (optional)

    The max depth to search as a number or element (defaults to 10 || document.body)

    \n
  • returnEl : Boolean (optional)

    True to return a Ext.Element object instead of DOM node

    \n

Returns

  • HTMLElement
    \n
Normalizes mouse wheel y-delta across browsers. ...

Normalizes mouse wheel y-delta across browsers. To get x-delta information, use\ngetWheelDeltas instead.

\n

Returns

  • Number

    The mouse wheel y-delta

    \n
Returns the mouse wheel deltas for this event. ...

Returns the mouse wheel deltas for this event.

\n

Returns

  • Object

    An object with \"x\" and \"y\" properties holding the mouse wheel deltas.

    \n
Gets the x coordinate of the event. ...

Gets the x coordinate of the event.

\n

Returns

Gets the page coordinates of the event. ...

Gets the page coordinates of the event.

\n

Returns

  • Number[]

    The xy values like [x, y]

    \n
Gets the y coordinate of the event. ...

Gets the y coordinate of the event.

\n

Returns

Returns true if the control, meta, shift or alt key was pressed during this event. ...

Returns true if the control, meta, shift or alt key was pressed during this event.

\n

Returns

Initialize configuration for this class. ...

Initialize configuration for this class. a typical example:

\n\n
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
\n

Parameters

Returns

  • Object

    mixins The mixin prototypes as key - value pairs

    \n
Injects a DOM event using the data in this object and (optionally) a new target. ...

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:

\n\n

HTMLEvents

\n\n\n
    \n
  • load
  • \n
  • unload
  • \n
  • select
  • \n
  • change
  • \n
  • submit
  • \n
  • reset
  • \n
  • resize
  • \n
  • scroll
  • \n
\n\n\n

MouseEvents

\n\n\n
    \n
  • click
  • \n
  • dblclick
  • \n
  • mousedown
  • \n
  • mouseup
  • \n
  • mouseover
  • \n
  • mousemove
  • \n
  • mouseout
  • \n
\n\n\n

UIEvents

\n\n\n
    \n
  • focusin
  • \n
  • focusout
  • \n
  • activate
  • \n
  • focus
  • \n
  • blur
  • \n
\n\n

Parameters

  • target : Ext.Element/HTMLElement (optional)

    If specified, the target for the event. This\nis likely to be used when relaying a DOM event. If not specified, getTarget\nis used to determine the target.

    \n
Checks if the key pressed was a \"navigation\" key ...

Checks if the key pressed was a \"navigation\" key

\n

Returns

  • Boolean

    True if the press is a navigation keypress

    \n
Checks if the key pressed was a \"special\" key ...

Checks if the key pressed was a \"special\" key

\n

Returns

  • Boolean

    True if the press is a special keypress

    \n
Prevents the browsers default handling of the event. ...

Prevents the browsers default handling of the event.

\n
Get the reference to the class from which this object was instantiated. ...

Get the reference to the class from which this object was instantiated. Note that unlike self,\nthis.statics() is scope-independent and it always returns the class from which it was called, regardless of what\nthis points to during run-time

\n\n
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
\n

Returns

Stop the event (preventDefault and stopPropagation) ...

Stop the event (preventDefault and stopPropagation)

\n
Cancels bubbling of the event. ...

Cancels bubbling of the event.

\n
( String/HTMLElement/Ext.Element el, [Boolean related], [Boolean allowEl] ) : Boolean
Returns true if the target of this event is a child of el. ...

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:

\n\n
// 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
\n\n

Parameters

  • el : String/HTMLElement/Ext.Element

    The id, DOM element or Ext.Element to check

    \n
  • related : Boolean (optional)

    true to test if the related target is within el instead of the target

    \n
  • allowEl : Boolean (optional)

    true to also check if the passed element is the target or related target

    \n

Returns

","allMixins":[],"meta":{},"requires":[],"deprecated":null,"extends":"Ext.Base","inheritable":false,"static":false,"superclasses":["Ext.Base","Ext.EventObject"],"singleton":true,"code_type":"ext_define","alias":null,"statics":{"property":[],"css_var":[],"css_mixin":[],"cfg":[],"method":[],"event":[]},"subclasses":[],"uses":["Ext.util.Point"],"protected":false,"mixins":[],"members":{"property":[{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"A","id":"property-A"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"ALT","id":"property-ALT"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"B","id":"property-B"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"BACKSPACE","id":"property-BACKSPACE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"C","id":"property-C"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"CAPS_LOCK","id":"property-CAPS_LOCK"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"CONTEXT_MENU","id":"property-CONTEXT_MENU"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"CTRL","id":"property-CTRL"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"D","id":"property-D"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"DELETE","id":"property-DELETE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"DOWN","id":"property-DOWN"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"E","id":"property-E"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"EIGHT","id":"property-EIGHT"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"END","id":"property-END"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"ENTER","id":"property-ENTER"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"ESC","id":"property-ESC"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F","id":"property-F"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F1","id":"property-F1"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F10","id":"property-F10"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F11","id":"property-F11"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F12","id":"property-F12"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F2","id":"property-F2"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F3","id":"property-F3"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F4","id":"property-F4"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F5","id":"property-F5"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F6","id":"property-F6"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F7","id":"property-F7"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F8","id":"property-F8"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"F9","id":"property-F9"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"FIVE","id":"property-FIVE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"FOUR","id":"property-FOUR"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"G","id":"property-G"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"H","id":"property-H"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"HOME","id":"property-HOME"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"I","id":"property-I"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"INSERT","id":"property-INSERT"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"J","id":"property-J"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"K","id":"property-K"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"L","id":"property-L"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"LEFT","id":"property-LEFT"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"M","id":"property-M"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"N","id":"property-N"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NINE","id":"property-NINE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_CENTER","id":"property-NUM_CENTER"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_DIVISION","id":"property-NUM_DIVISION"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_EIGHT","id":"property-NUM_EIGHT"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_FIVE","id":"property-NUM_FIVE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_FOUR","id":"property-NUM_FOUR"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_MINUS","id":"property-NUM_MINUS"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_MULTIPLY","id":"property-NUM_MULTIPLY"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_NINE","id":"property-NUM_NINE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_ONE","id":"property-NUM_ONE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_PERIOD","id":"property-NUM_PERIOD"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_PLUS","id":"property-NUM_PLUS"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_SEVEN","id":"property-NUM_SEVEN"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_SIX","id":"property-NUM_SIX"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_THREE","id":"property-NUM_THREE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_TWO","id":"property-NUM_TWO"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"NUM_ZERO","id":"property-NUM_ZERO"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"O","id":"property-O"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"ONE","id":"property-ONE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"P","id":"property-P"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"PAGE_DOWN","id":"property-PAGE_DOWN"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"PAGE_UP","id":"property-PAGE_UP"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"PAUSE","id":"property-PAUSE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"PRINT_SCREEN","id":"property-PRINT_SCREEN"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"Q","id":"property-Q"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"R","id":"property-R"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"RETURN","id":"property-RETURN"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"RIGHT","id":"property-RIGHT"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"S","id":"property-S"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"SEVEN","id":"property-SEVEN"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"SHIFT","id":"property-SHIFT"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"SIX","id":"property-SIX"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"SPACE","id":"property-SPACE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"T","id":"property-T"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"TAB","id":"property-TAB"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"THREE","id":"property-THREE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"TWO","id":"property-TWO"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"U","id":"property-U"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"UP","id":"property-UP"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"V","id":"property-V"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"W","id":"property-W"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"WHEEL_SCALE","id":"property-WHEEL_SCALE"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"X","id":"property-X"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"Y","id":"property-Y"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"Z","id":"property-Z"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.EventObject","template":null,"required":null,"protected":false,"name":"ZERO","id":"property-ZERO"},{"tagname":"property","deprecated":null,"static":false,"owner":"Ext.Base","template":null,"required":null,"protected":true,"name":"self","id":"property-self"}],"css_var":[],"css_mixin":[],"cfg":[],"method":[{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"callOverridden","id":"method-callOverridden"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"callParent","id":"method-callParent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"correctWheelDelta","id":"method-correctWheelDelta"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getCharCode","id":"method-getCharCode"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getKey","id":"method-getKey"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Replaced by getX

\n","version":"4.0"},"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getPageX","id":"method-getPageX"},{"tagname":"method","deprecated":{"doc":null,"tagname":"deprecated","text":"

Replaced by getY

\n","version":"4.0"},"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getPageY","id":"method-getPageY"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getPoint","id":"method-getPoint"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getRelatedTarget","id":"method-getRelatedTarget"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getTarget","id":"method-getTarget"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getWheelDelta","id":"method-getWheelDelta"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getWheelDeltas","id":"method-getWheelDeltas"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getX","id":"method-getX"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getXY","id":"method-getXY"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"getY","id":"method-getY"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"hasModifier","id":"method-hasModifier"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"initConfig","id":"method-initConfig"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"injectEvent","id":"method-injectEvent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"isNavKeyPress","id":"method-isNavKeyPress"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"isSpecialKey","id":"method-isSpecialKey"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"preventDefault","id":"method-preventDefault"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.Base","template":false,"required":null,"protected":true,"name":"statics","id":"method-statics"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"stopEvent","id":"method-stopEvent"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"stopPropagation","id":"method-stopPropagation"},{"tagname":"method","deprecated":null,"static":false,"owner":"Ext.EventObject","template":false,"required":null,"protected":false,"name":"within","id":"method-within"}],"event":[]},"private":false,"component":false,"name":"Ext.EventObject","alternateClassNames":[],"id":"class-Ext.EventObject","mixedInto":[],"xtypes":{},"files":[{"href":"EventObject.html#Ext-EventObject","filename":"EventObject.js"}]}); \ No newline at end of file