Reputation: 880
I have a simple question about form in Symfony2,how to integrate a form in other forms when I want to,the way to declare it?
My form is just a multiselect field and I want to use it in others forms,also I don't want to use it with :
{{ form_widget(form.multiselectform) }}
Upvotes: 0
Views: 132
Reputation: 2733
You can embed forms within other forms. See the Cookbook page on this subject.
Upvotes: 1