This is a follow-up to this question: Symfony2: doing form validation before the form is posted I've been able to simplify the code to create an demo.
Basically, I'm trying to get the form to display the validation errors before receiving a real form submission from the browser/user. When I do this in <=2.8.9, the form is considered invalid and shows the validation errors. When I do this in >=2.8.10, the form is valid. But when sending the entity through the validator, it still finds violations (same as in 2.8.9).
I've created a demo/example repo: https://github.com/darrylhein/symfony_form_validation_issue_2.8
Am I doing something wrong?
Did the API change internally somehow since I'm using "undocumented" portions?
I'm first trying to validate that there's an issue before I submit a bug report. I'd submit a fix or test as well, but I'm not even sure where to start.