extjs 事件监听 三种方式详解编程语言

xtype : 'textarea',   
name : 'dataSetField',   
labelSeparator:'',   
fieldLabel:'',   
hideLabel: true,   
allowBlank: true,   
height: mainPanelHeight*0.8,   
anchor:'99%',   
listeners:{'blur':function(){   
   alert(1);   
}}
gridPanel.on('rowdblclick',function(gridPanel,_rowIndex,e){   
  alert(2);   
} 
gridPanel.addListener('rowclick',function(){   
 alert(3)}   
);  

 

原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/13232.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论