ext 组件添加监听 listener


转自:http://blog.sina.com.cn/s/blog_48d7f92901011cfn.html


ext 组件添加监听的3中方法:

方法1 在构造组件的时候添加:

  1. xtype : 'textarea',  
  2. name : 'dataSetField',  
  3. labelSeparator:'',  
  4. fieldLabel:'',  
  5. hideLabel: true,  
  6. allowBlank: true,  
  7. height: mainPanelHeight*0.8,  
  8. anchor:'99%',  
  9. listeners:{'blur':function(){  
  10.    alert(1);  
  11. }} 

方法2 在组件外添加:

  1. gridPanel.on('rowdblclick',function(gridPanel,_rowIndex,e){  
  2.   alert(2);  
  3. }  
方法3 在组件外添加:

  1. gridPanel.addListener('rowclick',function(){  
  2.  alert(3)}  
  3. ); 


你可能感兴趣的:(ext)