Roo/form/MonthField.js
authorAlan Knowles <alan@roojs.com>
Mon, 22 Oct 2012 09:18:45 +0000 (17:18 +0800)
committerAlan Knowles <alan@roojs.com>
Mon, 22 Oct 2012 09:18:45 +0000 (17:18 +0800)
Roo/form/MonthField.js

index 62e8f84..11584b3 100644 (file)
@@ -262,6 +262,11 @@ monthField.setValue('2006-5-4');
             return value;
         }
         var v = Date.parseDate(value, this.format);
+        if (this.useIso) {
+            v = Date.parseDate(value, 'Y-m-d');
+        }
+        
+        
         if(!v && this.altFormats){
             if(!this.altFormatsArray){
                 this.altFormatsArray = this.altFormats.split("|");