ExtJs之自定义事件

2020-12-13 05:25

阅读:338

标签:style   class   blog   c   code   java   

1.新建一个实践类

soscw.com,搜素材
 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,{});
soscw.com,搜素材

 

2.绑定相关事件,这里用的事件类本身的引用

TODO 考虑怎么用其他的对象

soscw.com,搜素材
1 var emp = new Employee(‘tom‘);   
2 
3 emp.on(‘quit‘, myHandler1);   
4 
5 emp.on(‘quit‘, myHandler2);  
soscw.com,搜素材

 

3.触发

soscw.com,搜素材
1 mp.fireEvent(‘quit‘, this);  
soscw.com,搜素材

 

 

ExtJs之自定义事件,搜素材,soscw.com

ExtJs之自定义事件

标签:style   class   blog   c   code   java   

原文地址:http://www.cnblogs.com/tinfay/p/3736819.html


评论


亲,登录后才可以留言!