Roo/form/BasicForm.js
authorAlan Knowles <alan@akbkhome.com>
Mon, 26 Jul 2010 09:12:33 +0000 (17:12 +0800)
committerAlan Knowles <alan@akbkhome.com>
Mon, 26 Jul 2010 09:12:33 +0000 (17:12 +0800)
Roo/form/BasicForm.js

index 1188b37..4ab1eda 100644 (file)
@@ -353,6 +353,12 @@ clientValidation  Boolean          Applies to submit only.  Pass true to call fo
                 }
             }
         }
+        if (this.childForms) {
+            Roo.each(this.childForms, function (f) {
+                f.setValues(values);
+            });
+        }
+        
         return this;
     },