Symfony 2 Forms entity Field Type grouping

后端 未结 2 1014
迷失自我
迷失自我 2020-12-06 02:56

I\'m rendering a form in Symfony2 with data_class mapped to Reservation entity, and this form has a entity field type, of class Service. The relati

2条回答
  •  情歌与酒
    2020-12-06 03:28

    This can be solved by using the group_by option:

    $builder->add('services','entity', array(
        'class' => 'MyBundle:Service',
        'group_by' => 'serviceType',
        'multiple' => true,
        'expanded'  => true
    ));
    

提交回复
热议问题