widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index 228ee43..2884cea 100644 (file)
@@ -73,8 +73,17 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
     initEvents : function(){
             if(this.inputType == 'password'){
                 this.el.on('keydown',function(event){
-                    Roo.log(event.getKey());
-                });
+                    Roo.log('before');
+                    Roo.log(this.el.getValue());
+                    Roo.log(this.el.getValue().length);
+                    if(event.getKey() == 8){
+                        Roo.log('in');
+                        Roo.log(this.el.getValue());
+                        Roo.log(this.el.getValue().length);
+                        event.preventDefault();
+                        this.setValue('');
+                    };
+                },this);
             }
             Ext.form.SecurePass.superclass.initEvents.call(this);
             this.el.on('keyup', this.checkStrength, this, {buffer:50});