I have a compund 3-level form. It contains 6 subforms, and each of those contains fields(not the same fields, naturally).
The task is to store the form data in a serialized format, and then to load it to the form. Storing works fine, by using
$data = serialize($form->getData());
The problem is with loading this. I'm using this:
$form->setData(unserialize($data));
The values of $data equal in both cases.
I don't use distinguished database fields for each form field on purpose, I don't need to be able to search among them, I just need to store and load the form and use the form data as an array. All together the form contains ~80 fields, some of them are custom fields.
None of the fields get filled in when loading the data. Any idea, what I'm doing wrong?