Symfony 2.6默认选中复选框

时间:2015-01-13 15:52:30

标签: symfony checkbox symfony-forms symfony-2.6

如何根据数据库中的数据默认选中复选框? 现在我的表格看起来像:

      ...
      ->add(
        "role", "entity", [
          "class"    => "AppDefaultBundle:OptionRole",
          "required" => false,
          "label"    => "Roles for user: ",
          "property" => "name",
          "expanded" => true,
          "multiple" => true
        ]
      )
      ...

我想根据其他表中的数据选择此复选框的默认值。

1 个答案:

答案 0 :(得分:2)

您应该添加选项属性:http://symfony.com/doc/current/reference/forms/types/choice.html#choices

在您的情况下,您应该有一个数组,其中所有OptionRoles与您正在处理的(用户?)实体(您为其创建表单的实体)相关。

假设学说用户模型知道它的OptionRoles(很可能是ManyToMany关联),表单应该自动检查用户OptionRoles的复选框。

以下是一个例子:

[ 
    'label' => 'Select Modules',
    'class' => 'Foo\BarBundle\Entity\Module',
    'choices' => $this->availableModules(),
    'property' => 'name',
    'multiple' => true,
    'expanded' => true
]

...

public function availableModules()
{
    return $this->get('doctrine')
    ->getManager()
    ->getRepository('Foo\BarBundle\Entity\Module')
    ->findAll();
}