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

来源:互联网 发布:完美主义 知乎 编辑:程序博客网 时间:2024/05/21 18:19

  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. }
原创粉丝点击