ExtJs之自定义事件
2020-12-13 05:25
标签:style class blog c code java 1.新建一个实践类 2.绑定相关事件,这里用的事件类本身的引用 TODO 考虑怎么用其他的对象 3.触发 ExtJs之自定义事件,搜素材,soscw.com ExtJs之自定义事件 标签:style class blog c code java 原文地址:http://www.cnblogs.com/tinfay/p/3736819.html 1 Employee = function(name)
2 {
3
4 this.name = name;
5
6 this.addEvents({
7
8 "fired" : true,
9
10 "quit" : true
11
12 });
13
14 }
15
16 Ext.extend(Employee, Ext.util.Observable,{});
1 var emp = new Employee(‘tom‘);
2
3 emp.on(‘quit‘, myHandler1);
4
5 emp.on(‘quit‘, myHandler2);
1 mp.fireEvent(‘quit‘, this);