Extjs 文本框 TextField 添加点击(onclick)事件方法


  1. {    
  2.   xtype:'textfield',  
  3.   listeners: {  
  4.    render: function(p) {  
  5.       // Append the Panel to the click handler's argument list.  
  6.      p.getEl().on('click', function(p){  
  7.                 //处理点击事件代码  
  8.       });  
  9.   },  
  10. }

你可能感兴趣的:(EXTJS)