/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_EventManager({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":null,"uses":[],"html":"
Files
Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides\nseveral useful events directly.\nSee Ext.EventObject for more details on normalized event objects.
\nForces a document ready state transition for the framework. Used when Ext is loaded\ninto a DOM structure AFTER initial page load (Google API or other dynamic load scenario.\nAny pending 'onDocumentReady' handlers will be fired (if not already handled).
\nUrl used for onDocumentReady with using SSL (defaults to Ext.SSL_SECURE_URL)
\nDefaults to: false
Appends an event handler to an element. The shorthand version on is equivalent. Typically you will\nuse Ext.Element.addListener directly on an Element in favor of calling this version.
\nThe html element or id to assign the event handler to.
\nThe name of the event to listen for.
\nThe handler function the event invokes. This function is passed\nthe following parameters:
The scope (this
reference) in which the handler function is executed. Defaults to the Element.
An object containing handler configuration properties.\nThis may contain any of the following properties:
this
reference) in which the handler function is executed. Defaults to the Element.See Ext.Element.addListener for examples of how to use these options.
\n\nTrue if the document is in a 'complete' state (or was determined to\nbe true by other means). If false, the state is evaluated again until canceled.
\nReturns true if the control, meta, shift or alt key was pressed during this event.
\nAppends an event handler to an element. Shorthand for addListener.
\nThe html element or id to assign the event handler to
\nThe name of the event to listen for.
\nThe handler function the event invokes.
\n(this
reference) in which the handler function executes. Defaults to the Element.
An object containing standard addListener options
\nAdds a listener to be notified when the document is ready (before onload and before images are loaded). Can be\naccessed shorthanded as Ext.onReady().
\nThe method the event invokes.
\nThe scope (this
reference) in which the handler function executes. Defaults to the browser window.
Options object as passed to Ext.Element.addListener. It is recommended that the options\n{single: true}
be used so that the handler is removed on first invocation.
Adds a listener to be notified when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
\nThe function the event invokes.
\nThe scope (this
reference) in which the handler function executes. Defaults to the browser window.
Options object as passed to Ext.Element.addListener
\nAdds a listener to be notified when the browser window is resized and provides resize event buffering (100 milliseconds),\npasses new viewport width and height to handlers.
\nThe handler function the window resize event invokes.
\nThe scope (this
reference) in which the handler function executes. Defaults to the browser window.
Options object as passed to Ext.Element.addListener
\nRemoves all event handers from an element. Typically you will use Ext.Element.removeAllListeners\ndirectly on an Element in favor of calling this version.
\nThe id or html element from which to remove all event handlers.
\nRemoves an event handler from an element. The shorthand version un is equivalent. Typically\nyou will use Ext.Element.removeListener directly on an Element in favor of calling this version.
\nThe id or html element from which to remove the listener.
\nThe name of the event.
\nThe handler function to remove. This must be a reference to the function passed into the addListener call.
\nIf a scope (this
reference) was specified when the listener was added,\nthen this must refer to the same object.
Removes the passed window resize listener.
\nThe method the event invokes
\nThe scope of handler
\nRemoves an event handler from an element. Shorthand for removeListener.
\nThe id or html element from which to remove the listener.
\nThe name of the event.
\nThe handler function to remove. This must be a reference to the function passed into the on call.
\nIf a scope (this
reference) was specified when the listener was added,\nthen this must refer to the same object.