Hi, Im trying to create a custom formatter in Symfony 1.4. I have embedded form via
$this->embedRelation('User','BasesfGuardUserAdminForm');
Is there a way to format the name of the embedded form 'User'?
Hi, Im trying to create a custom formatter in Symfony 1.4. I have embedded form via
$this->embedRelation('User','BasesfGuardUserAdminForm');
Is there a way to format the name of the embedded form 'User'?
I has the same issue, and when I replaced embedForm() by mergedForm() the errors became easy to manipulate.
foreach ( $answers as $a )
{
$aForm = new QuestionAnswerForm($a);
$this->mergeForm($aForm);
}
$this->widgetSchema->getFormFormatter()->setRowFormat('%field%%help%%hidden_fields%');