From 8449c9da727ff7a9f0fc7b8800aad8ada81bcafc Mon Sep 17 00:00:00 2001 From: Alan Knowles Date: Mon, 14 Nov 2011 17:46:59 +0800 Subject: [PATCH] Roo/form/BasicForm.js --- Roo/form/BasicForm.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Roo/form/BasicForm.js b/Roo/form/BasicForm.js index 0def7ee019..cbe43c0016 100644 --- a/Roo/form/BasicForm.js +++ b/Roo/form/BasicForm.js @@ -452,12 +452,12 @@ clientValidation Boolean Applies to submit only. Pass true to call fo * This differs from getValues as it calls getValue on each child item, rather than using dom data. * @return {Object} */ - getFieldValues : function() + getFieldValues : function(with_hidden) { if (this.childForms) { // copy values from the child forms Roo.each(this.childForms, function (f) { - this.setValues(f.getValues()); + this.setValues(f.getFieldValues(with_hidden)); }, this); } -- 2.39.2