Use the setValidationGroup() method to tell your form which fields it should care about.
For example, if your form had 3 fields with username , email and country , and you do not need to check username because it will not be changed, you can do the following in your controller (assuming that $form is an instance of your form)
$form->setValidationGroup(array( 'email', 'country', ));
Crisp source share