具有禁用选项的Symfony Choice类型

时间:2015-07-21 10:01:21

标签: forms symfony choice custom-field-type

根据给定<select>选项的真实性,Symfony是否有办法使用已禁用的选项呈现choices表单类型?

我看到this thread(感谢DonCallisto)关于禁用选择扩展选项; 但是我不希望有更多的选择。 我希望保留一个select元素,并禁用options

$builder->add('list', 'choice', array(
    'choices' => array(
        array(
            'value' => 1,
            'label' => '1',
            'disabled' => false
        ),
        array(
            'value' => 2,
            'label' => '2',
            'disabled' => false
        ),
        array(
            'value' => 3,
            'label' => '3',
            'disabled' => true
        )
    ),
    // Instead of
    // 'choices' => array(
    //     1 => 'Option 1',
    //     2 => 'Option 2',
    //     3 => 'Option 3'
    // )
);

# Which would render to the following element
<select [...]>
    <option value='1'>1</value>
    <option value='2'>2</value>
    <option value='3' disabled='disabled'>3</value>
</select>

我无法找到方法...... 是否有必要建立自己的字段类型?

2 个答案:

答案 0 :(得分:21)

从2.7版开始,Symfony引入了一种使用callable设置选择属性的方法,这正是你需要的。

此代码取自官方Symfony documentation

$builder->add('attending', ChoiceType::class, array(
    'choices' => array(
        'Yes' => true,
        'No' => false,
        'Maybe' => null,
    ),
    'choices_as_values' => true,
    'choice_attr' => function($val, $key, $index) {
        // adds a class like attending_yes, attending_no, etc
        return ['class' => 'attending_'.strtolower($key)];
    },
));

您可以使用'choice_attr'并传递一个函数,该函数将决定是否添加disabled属性,具体取决于所选的值,键或索引。

...
    'choice_attr' => function($key, $val, $index) {
        $disabled = false;

        // set disabled to true based on the value, key or index of the choice...

        return $disabled ? ['disabled' => 'disabled'] : [];
    },
...

答案 1 :(得分:0)

根据表格布局:

https://github.com/symfony/symfony/blob/2.7/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig

和choice_widget_collapsed和choice_widget_options,我认为不可能直接使用Symfony的默认选择形式。

您可以尝试:

  • 构建您自己的选择表单(通过扩展现有表单并将参数添加到选项列表,我认为这是最好的方式)
  • 使用javascript / jquery在加载时使用现有的Symfony's Choice修改选项参数