How to clear all validators of single field from Zend Form?

1.3k Views Asked by At
$form->fieldName->clearValidators();

I used clearValidators() to clear all validators of a single field of my zend form, and I wanted to clear validators when my action performs. But it doesn't work. Can anybody help?

1

There are 1 best solutions below

0
On

try this

   $form->fieldName->setValidators(array());