多选。 Symfony表格

时间:2015-05-14 10:35:35

标签: javascript php css symfony formbuilder

如何选择多个实体?

我的Symfony表单代码

    ->add('typeContact', 'entity', array(
        'required'=>false,
        'multiple' => true,
        'expanded' => true,
        'class' => 'App\MyBundle\Entity\TypeContact'
    ))

我得到了这个结果,

enter image description here

但我想要这种类型。

enter image description here

我怎样才能得到这种类型。我试试expanded => false 任何人都可以帮忙吗?

2 个答案:

答案 0 :(得分:1)

此链接可帮助您创建所需的代码:http://aehlke.github.io/tag-it/https://select2.github.io/

答案 1 :(得分:1)

表示能够在Symfony中检查多个值的选项列表的标准方法是一个复选框。

要使用select2.github.io之类的库,您需要覆盖表单模板中的choice_widget_expanded块。要了解如何覆盖模板,请访问以下链接:http://symfony.com/doc/current/cookbook/form/form_customization.html