光标定位textfield,全部选中输入值

Ext.onReady(function() { 
    var form = new Ext.form.FormPanel({ 
         renderTo : document.body, 
         layout : 'form', 
         items : [{ 
             xtype : 'textfield', 
             fieldLabel : 'test', 
             value : 'test', 
             listeners  : { 
               'focus':function(){ 
                    this.selectText(); 
                } 
             } 
         }]  
   }) 
});


原创地址: http://www.iteye.com/problems/15498

你可能感兴趣的:(ext)