How to disable filtering in Zend_Form before its re-populating?

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

You cannot disable them.

You could do something like:

$filters = $form->getElementFilters();
$form->setElementFilters( array() );
$form->populate($data);
$form->setElementFilters( $filters );

However, afaik Zend_Form will only filter the values when you get them from the form and not when you populate the form, so the above is pointless. In case you are after the raw values, use

$form->getUnfilteredValues();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.