ソースを参照

[Form] Add new fields in CollectionField::setData()

Jeremy Mikola 14 年 前
コミット
77602239a4
1 ファイル変更4 行追加0 行削除
  1. 4 0
      src/Symfony/Component/Form/CollectionField.php

+ 4 - 0
src/Symfony/Component/Form/CollectionField.php

@@ -61,6 +61,10 @@ class CollectionField extends FieldGroup
             }
         }
 
+        foreach ($collection as $name => $value) {
+            $this->add($this->newField($name, $name));
+        }
+
         parent::setData($collection);
     }