extjs 이벤트 감청 세 가지 방식

1282 단어 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)}  
);  

좋은 웹페이지 즐겨찾기