extjs: how can I add event handlers to a component in its raw object form (xtype)

flybywire picture flybywire · Mar 3, 2010 · Viewed 13.2k times · Source

I have an extjs component in its raw object type, for example:

var x = {
   xtype: 'button', 
   text: 'Delete', 
   handler: whatever, 
   more:config, 
   more2: config2};

Now I want to add some listener to x. In my scenario I don't have access to the x object before or right after it is created. I just want to add an event handler when it is just a javascript object without overwriting existing handlers. How can that be done?

Answer

Arun P Johny picture Arun P Johny · Mar 3, 2010

You can use the listeners config to do this

{
   xtype: 'button', 
   text: 'Delete', 
   handler: whatever, 
   more:config, 
   more2: config2,
   listeners:{
      scope : this,
      event1 : function(){},
      event2 : function(){}
   }

};