It's a simply problem but, I have question about Form process (isValid()
& GetData()
) with $_GET
request not a $_POST
request.
$form->isValid() // return false everytime !
$form->getData() // return NULL everytime too
So I deduced that this was the method $_GET
which prevents normal process of form validation.
Someone has already had this problem ??
More infos : I've a class form name LargeSearchType.php without entity relation. Just a search engine form with many select,checkbox... My controller use Symfony2 standard (documentation) process form. (http://symfony.com/fr/doc/current/book/forms.html#gerer-la-soumission-des-formulaires)