[Method] Appends an event handler to an element
String/HTMLElement The HTML element or id to assign the event handler to.
String The name of the event to listen for.
Function The handler function the event invokes. This function is passed the following parameters:
Object The scope (this reference) in which the handler function is executed. Defaults to the Element.
Object An object containing handler configuration properties. This may contain any of the following properties:
[Method] Appends an event handler to an element
String/HTMLElement The html element or id to assign the event handler to.
String The name of the event to listen for.
Function The handler function the event invokes.
Object (this reference) in which the handler function executes. Defaults to the Element.
Object An object containing standard addListener options
[Method] Adds a listener to be notified when the document is ready before onload and before images are loaded
[Method] Adds a listener to be notified when the browser window is resized and provides resize event buffering 50 millisecond
Function The handler function the window resize event invokes.
Object The scope (this reference) in which the handler function executes. Defaults to the browser window.
Boolean Options object as passed to Ext.Element.addListener
[Method] Removes all event handers from an element
String/HTMLElement The id or html element from which to remove all event handlers.
[Method] Removes an event handler from an element
String/HTMLElement The id or html element from which to remove the listener.
String The name of the event.
Function The handler function to remove. This must be a reference to the function passed into the addListener call.
Object If a scope (this reference) was specified when the listener was added, then this must refer to the same object.
[Method] Removes an event handler from an element
String/HTMLElement The id or html element from which to remove the listener.
String The name of the event.
Function The handler function to remove. This must be a reference to the function passed into the on call.
Object If a scope (this reference) was specified when the listener was added, then this must refer to the same object.