Roo/bootstrap/form/Input.js
[roojs1] / roojs-bootstrap-debug.js
index be333a5..36ea459 100644 (file)
@@ -13135,6 +13135,9 @@ Roo.extend(Roo.bootstrap.form.Input, Roo.bootstrap.Component,  {
     setValue : function(v){
         this.value = v;
         if(this.rendered){
+            Roo.log(this.name);
+            Roo.log(v);
+            Roo.log('adsad');
             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
             this.validate();
         }
@@ -13657,7 +13660,7 @@ Roo.extend(Roo.bootstrap.form.TextArea, Roo.bootstrap.form.Input,  {
             this.el.select('.form-control-feedback', true).first().removeClass([this.invalidFeedbackClass, this.validFeedbackClass]);
         }
 
-        if(this.disabled || this.allowBlank){
+        if(this.disabled){
             return;
         }
         
@@ -24210,12 +24213,10 @@ Roo.extend(Roo.bootstrap.form.TimeField, Roo.bootstrap.form.Input,  {
     
     update: function()
     {
-        
+        // default minute is a multiple of minuteStep
         if(typeof(this.time) === 'undefined') {
             this.time = new Date();
-            Roo.log(this.time);
             this.time = this.time.add(Date.MINUTE, Math.round(parseInt(this.time.format('i')) / this.minuteStep) * this.minuteStep - parseInt(this.time.format('i')));
-            Roo.log(this.time);
         }
         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;