Is there a way to disable notInArray Validator in Zend Framework 2. All the info on the internet shows how to disable the notInArray Validator in Zend Framework 1, for example i
If you don't need validation at all, add required => false in InputFilter
required => false
$this->add(array( 'name' => 'your-elements-name', 'required' => false, ));
worked for me..