I have a Symfony 2 form component. It works perfectly on small dataset. However, when I try to manage a large dataset (about 800 variables), the form component has a strange behaviour.
Using breakpoint, I've isolated the problem: the submitted variable of the form is set to false. In consequence, the code which persists data is not executed and I'm redirected to the form input page (like the first time).
For some reasons, form variables are not binded to the form object. I "manually" add them as post parameter. As I said before, it works great on smaller dataset.
Any help/suggestion on this would be really appreciated.