2011-07-12 62 views
0

我目前正在研究具有標籤的模型。Symfony Admin Generator窗體中的其他窗體

對於標籤,我需要一個額外的表單,但表單生成器生成的所有內容都包含在<form>標籤內。

如何在Symfony表單生成器生成的當前表單中添加額外的表單?

謝謝

回答

0

在你的窗體類configure()方法,你可以嵌入其他形式。

在/lib/form/myForm.class.php

public function configure() 
    { 
     $other_form = new OtherForm(); 
     $this->embedForm('Other Form', $other_form); 
    } 
相關問題