我的表单中有以下实体字段:
->add('cover_recto_color', 'entity', [
'label' => 'printers_products.cover_recto_color.label',
'multiple' => true,
'expanded' => true,
'class' => 'VeoprintVeoProductBundle:VeoColor',
'property' => 'name',
'query_builder' => function (EntityRepository $er) {
return $er->createQueryBuilder('vc')
->innerJoin('vc.rectoProducts', 'p')
->where('p.family = :family')
->setParameter('family', $this->_family)
;
}
])
此字段使用复选框列表检索一组数据以显示它。我想在此列表中添加另一个自定义选项,表示数据库中的NULL值,但表示应用程序的具体值。
我尝试编辑finishView
函数中的选项:
public function finishView(FormView $view, FormInterface $form, array $options)
{
$new_choice = new ChoiceView(null, 'value', 'label');
$view->children['cover_recto_color']->vars['choices'][] = $new_choice;
}
但它不起作用。 buildView
函数也是如此。
我该怎么办?
答案 0 :(得分:2)
如果您还没有找到解决方案,或者仅为其他人阅读:
确保您拥有:
use Symfony\Component\Form\FormView;
use Symfony\Component\Form\FormInterface;
use Symfony\Component\Form\ChoiceList\View\ChoiceView;
和:
public function finishView(FormView $view, FormInterface $form, array $options)
{
$new_choice = new ChoiceView(array(), '0', 'Your color');
$view->children['cover_recto_color']->vars['choices'][] = $new_choice;
}
' 0'在新的ChoiceView中是新选项的价值和?你的颜色'是选项的文本。
这就是全部,你不需要任何其他东西。
这对我有用。