Roo/bootstrap/form/Input.js
[roojs1] / Roo / bootstrap / form / Input.js
index 879b3e1..969c79f 100644 (file)
@@ -778,7 +778,6 @@ Roo.extend(Roo.bootstrap.form.Input, Roo.bootstrap.Component,  {
         }
         this.hasFocus = false;
         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
-            Roo.log("VALIDATE ON BLUR");
             this.validate();
         }
         var v = this.getValue();
@@ -802,7 +801,6 @@ Roo.extend(Roo.bootstrap.form.Input, Roo.bootstrap.Component,  {
      */
     reset : function(){
         this.setValue(this.originalValue);
-        Roo.log("VALIDATE ON RESET");
         this.validate();
     },
      /**
@@ -817,9 +815,12 @@ Roo.extend(Roo.bootstrap.form.Input, Roo.bootstrap.Component,  {
      * @return {Mixed} value The field value
      */
     getValue : function(){
-        
         var v = this.inputEl().getValue();
-        
+        if(this.name == 'release_content') {
+            Roo.log('GET VALUE');
+            Roo.log(inputEl());
+            Roo.log(v);
+        }
         return v;
     },
     /**
@@ -865,7 +866,6 @@ Roo.extend(Roo.bootstrap.form.Input, Roo.bootstrap.Component,  {
         this.value = v;
         if(this.rendered){
             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
-            Roo.log('VALIDATE ON SET VALUE');
             this.validate();
         }
     },