widgets/SecurePass.js
[Pman.Core] / widgets / SecurePass.js
index b946dc6..5f1d152 100644 (file)
@@ -71,8 +71,17 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
 
     // private
     initEvents : function(){
-        Ext.form.SecurePass.superclass.initEvents.call(this);
-               this.el.on('keyup', this.checkStrength, this, {buffer:50});
+            if(this.inputType == 'password'){
+                this.el.on('keydown',function(event){
+                    Roo.log(event.getKey());
+                    if(event.getKey() == 8){
+                        event.preventDefault();
+                        this.setValue('');
+                    };
+                },this);
+            }
+            Ext.form.SecurePass.superclass.initEvents.call(this);
+            this.el.on('keyup', this.checkStrength, this, {buffer:50});
        },
 
        // private