根据SonataAdminBundle中的其他字段更改字段

时间:2017-11-10 14:37:05

标签: php symfony sonata-admin symfony3.x

在Symfony3项目中,我有一个像这样的SonataAdminBundle表单:

  protected function configureFormFields(FormMapper $formMapper) {

        $formMapper->add('rentalTime', 'choice', array(
            'label' => 'Durée de location',
            'multiple' => false,
            'choices' => array(
                '3H' => '3',
                '24H' => '24',
            )
        ));
        $formMapper->add('rentalTimeType', 'choice', array(
            'label' => 'Type de durée de location',
            'multiple' => false,
            'choices' => array(
                'Heure(s)' => 'H',
                'Plage de jours' => 'R'
            )
        ));
    .
    .
    .

当我更改rentalTime的值时,我想更改rentaltimeType的值。 示例:如果我在rentalTime字段中选择24H并自动更改' Plage de jours'

的rentalTimeType。

我已经使用$ subject阅读了很多主题,但它并不完全符合我的需要。

那么我可以做我需要的吗?

1 个答案:

答案 0 :(得分:0)

您可以自定义特定于用户提交的数据的表单。

Dynamic Generation for Submitted Forms