The order does not matter, if you want to set prefixPath for the whole form
$options = array('prefixPath' => …);
just for Elements on the Form
$options = array('elementPrefixPath' => …);
as i said, have a look at …/Zend/Form.php method setOptions() which is called
on construction of a form and redirects to the appropriate adder Methods like
addPrefixPaths() and addElementPrefixPaths()
Greetings,
Christian
> I just have done so!
> But nothing happened.. Only the prefixes "Zend_Form_Element_" and
> "Zend_Dojo_Form_Element_" is taken.. How and where i'll have to set
> prefixPath in this array?
>
> Is it possible, that i have to set it at the beginning of the subform
> section?