Ej: Si hago esto el me trae los datos y los muestra a la hora de editarlos, esto esta en el metodo configure
Código PHP:
foreach($this->getObject()->getProductoIngrediente() as $productoIngredientesForm){
$productoIngredienteForm = new ProductoIngredienteForm($productoIngredientesForm);
$this->embedform('ingrediente_list_'.$productoIngredientesForm->getId(), $productoIngredienteForm);
}
Código PHP:
$i = 0;
$listaProductoIngrediente = new sfForm();
foreach($this->getObject()->getProductoIngrediente() as $ingredientesForm){
$listaProductoIngrediente->embedForm(++$i, new ProductoIngredienteForm($ingredientesForm));
}
$listaProductoIngrediente->embedForm(++$i, new ProductoIngredienteForm());
$this->embedForm('ingrediente_list', $listaProductoIngrediente);