admin管理员组文章数量:1339774
I have a property grid that I want to add multiple "afterrender" listeners to. Is it possible to add multiple listeners of the same type, or fire multiple functions within one listener?
I've tried:
afterrender: function(){...},
function(){...}
but it does not fire both of the functions.
I have a property grid that I want to add multiple "afterrender" listeners to. Is it possible to add multiple listeners of the same type, or fire multiple functions within one listener?
I've tried:
afterrender: function(){...},
function(){...}
but it does not fire both of the functions.
Share Improve this question asked Jul 2, 2015 at 8:30 Ben IrvingBen Irving 4931 gold badge6 silver badges21 bronze badges4 Answers
Reset to default 8Another way to call multiple functions with the same event is by using on:
...
initComponent: function () {
var me = this;
me.on('afterrender', me.functionA);
me.on('afterrender', me.functionB);
...
me.on('afterrender', me.functionN);
me.callParent(arguments);
}
Just make multiple function calls within the function callback. Below shows a full example of this...
Working Fiddle
Ext.create('Ext.grid.property.Grid', {
title: 'Properties Grid',
width: 300,
renderTo: Ext.getBody(),
functionOne: function() {
alert("functionOne called");
},
functionTwo: function() {
alert("functionTwo called");
},
listeners: {
afterrender: function() {
var me = this;
me.functionOne();
me.functionTwo();
}
}
});
yes it is possible. you can add it with "addListener" function.
You can do it by calling several functions in a callback function with its all arguments, like this:
afterrender: function() {
Foo.apply(this, arguments);
Bar.apply(this, arguments);
}
Now you can define functions Foo
and Bar
and it would be called with all afterrender
callback function arguments.
本文标签: javascriptExtJS multiple listenersStack Overflow
版权声明:本文标题:javascript - ExtJS multiple listeners - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743604450a2509088.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论