Open
Description
I want to make ajax validation durning form fill. So each input is listened by js and saving to database the value, not matter if it valid or not. After save i'm fetching all saved values from db and calling $form->setValue($value);
So, this form is always not valid without $form->setRequest($request);
How to validate in this case? Form filled by setValue without request, because request contains only one field, i don't want to submit whole form each time any field changed.