Two ways to add custom events in ExtJS

method one
listeners : [
{
element : 'element' ,
tap : 'onMessage'
}
]
 
Method Two
initialize : function () {
var me =this ;
this . element . on ({
tap : function ( event , html , obj ) {
me . fireEvent ( 'click' , me );
}
});
}

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326265787&siteId=291194637