widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index 17e0f1a..de256e0 100644 (file)
@@ -71,16 +71,15 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
 
     // private
     initEvents : function(){
-            if(this.inputType == 'password'){
-                this.el.on('keydown',function(event){
-                    Roo.log(this.getValue().length);
-                    if((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length == 1){ // backspace and delete key
-                        event.preventDefault();
-                        this.setValue('');
-                    };
-                },this, {buffer:50});
-            }
             Ext.form.SecurePass.superclass.initEvents.call(this);
+        
+            if(this.el.is('input[type=password]') && Roo.isSafari){
+                this.el.on('keydown', this.SafariOnKeyDown, this);
+//                this.el.on("focus", function(){
+//                    this.setValue('');
+//                }, this);
+            }
+
             this.el.on('keyup', this.checkStrength, this, {buffer:50});
        },
 
@@ -296,5 +295,20 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
     // private
        ClientSideWeakPassword : function(pwd){
                return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
-       }
+       },
+        
+    // private
+        SafariOnKeyDown : function(event){
+            Roo.log('NAV : ' + event.isNavKeyPress());
+            Roo.log('Special : ' + event.isSpecialKey());
+            Roo.log('getCharCode : ' + event.getCharCode());
+            var isSelectAll = false;
+            if(this.el.dom.selectionEnd > 0){
+                isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
+            }
+            if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1) || isSelectAll){ // backspace and delete key
+                event.preventDefault();
+                this.setValue('');
+            };
+        }
 })
\ No newline at end of file