Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フィールドを追加するフォームビルダーオブジェクトがあります。2つの既存のフィールドの間にフィールドを追加するにはどうすればよいですか。
$formBuilder->add('name',...) ->add('phone',...); //Somehow here add an 'email' field between the 'name' and 'phone' field $form = $formBuilder->getForm();
フォームを小枝で部分的にレンダリングすることにより、順序を変更できます。
{{ form_row(form.name) }} {{ form_row(form.email) }} {{ form_row(form.phone) }}