widgets/SecurePass.js
authorEdward <edward@roojs.com>
Tue, 23 Apr 2013 05:49:42 +0000 (13:49 +0800)
committerEdward <edward@roojs.com>
Tue, 23 Apr 2013 05:49:42 +0000 (13:49 +0800)
widgets/SecurePass.js

index 006df22..f59e557 100644 (file)
@@ -299,6 +299,10 @@ Ext.extend(Ext.form.SecurePass, Ext.form.TextField, {
         
     // private
         SafariOnKeyDown : function(event){
+            Roo.log(this.el);
+            Roo.log('start : ' + this.el.dom.selectionStart);
+            Roo.log('end : ' + this.el.dom.selectionEnd);
+            Roo.log('length : ' + this.getValue().length);
             var isSelectAll = this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length;
             if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1) || isSelectAll == 0){ // backspace and delete key
                 event.preventDefault();