Nll
Nll

Reputation: 880

integrate form in others froms in Symfony2

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

Answers (1)

james_t
james_t

Reputation: 2733

You can embed forms within other forms. See the Cookbook page on this subject.

Upvotes: 1

Related Questions