Roo/bootstrap/PhoneInput.js
authorjohn <john@roojs.com>
Mon, 29 Oct 2018 08:26:53 +0000 (16:26 +0800)
committerjohn <john@roojs.com>
Mon, 29 Oct 2018 08:26:53 +0000 (16:26 +0800)
Roo/bootstrap/PhoneInput.js

index 9bebfea..ca996c6 100644 (file)
@@ -295,6 +295,7 @@ Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
             
             this.list.on('mouseover', this.onViewOver, this);
             this.list.on('mousemove', this.onViewMove, this);
+            // this.inputEl().on("keyup", this.onKeyUp, this);
             this.inputEl().on("keypress", this.onKeyPress, this);
             
             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
@@ -545,17 +546,17 @@ Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
             return this.el.select('input.hidden-tel-input',true).first();
         },
         
+        onKeyUp : function(e){
+            this.setValue(this.getValue());
+        },
+        
         onKeyPress : function(e){
             
             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
                 e.stopEvent();
             }
-            
-            Roo.log(this.getValue());
-            
-            this.setValue(this.getValue());
-            
-            Roo.log(this.getValue());
         }
         
+        
+        
 });
\ No newline at end of file