Explain ExtJS 4 event handling
Let’s start by describing DOM elements’ event handling. DOM node event handling First of all you wouldn’t want to work with DOM node directly. Instead you probably would want to utilize Ext.Element interface. For the purpose of assigning event handlers, Element.addListener and Element.on (these are equivalent) were created. So, for example, if we have html: … Read more