DOM Events
- The DOM model describes numerous events which may be fired by a DOM node.
- Here are some of the most common DOM events:
- mousedown
- mouseover
- click
- select
- blur
- focus
- change
- Complete list of DOM events: http://www.w3.org/TR/DOM-Level-2-Events/events.html
- When handled in Ext, these will be wrapped in Ext.EventObjects.
- Ext.EventObject
- Wraps the native browser event object
- Cross-browser, consistent event API
- Provides normalized info like key code, event target, etc.
- All DOM events are fired with the same method signature
- Method Signature:
- e : Ext.EventObject
- target : HtmlElement