2

我有一个“选择”类型的表单小部件,它显示为许多复选框的列表。一切都很好。所以强调一下:有一个小部件,带有许多复选框(而不是几个复选框小部件)。

现在,我想禁用其中一些复选框。该数据在 $options-Array 中可用。

这是我的 FooType.php 的 buildForm() 函数

...
public function buildForm(FormBuilderInterface $builder, array $options)
{
  $builder
    ->add('foo', 'choice', array('choices'  => $options['choiceArray']['id'],
      'multiple' => true,
      'expanded' => true,
      'disabled' => $options['choiceArray']['disabled'] // does not work (needs a boolean)
      'data'     => $options['choiceArray']['checked'], // works
      'attr'     => array('class' => 'checkbox')))
  ;
}
...

我的 Twig 模板如下所示:

{% for foo in fooForm %}

    <dd>{{ form_widget(foo) }}</dd>

{% endfor %}

我只能禁用所有复选框(通过在 buildForm 中设置 'disabled' => true )。并且在那里传递一个数组不起作用(如代码段中所述)。

如何禁用我的选择小部件的某些选中的复选框(存储在 $options['choiceArray']['disabled'] 中)?

4

2 回答 2

1

我已经使用 JQuery 解决了这个问题。

  • 在我的 FooType.php 中,我将应该禁用的字段数组字符串化。
  • 我通过隐藏字段将 buildForm()-Function 中的字符串传递给模板
  • 在那里我使用 JQuery 将字符串再次拆分为 ID 并处理禁用复选框并将标签变灰

这是 PHP 代码(FooType.php):

...
public function buildForm(FormBuilderInterface $builder, array $options)
{
    $disabledCount  = sizeof($options['choiceArray']['disabled']);
    $disabledString = '';

    for ($i = 0; $i < $disabledCount; $i++)
    {
        $disabledString .= $options['choiceArray']['disabled'][$i];

        if ($i < $disabledCount-1)
        {
            $disabledString .= '|';
        }
    }



    $builder
        ->add('foo', 'choice', array('choices'  => $options['choiceArray']['id'],
                                               'multiple' => true,
                                               'expanded' => true,
                                               'data'     => $options['choiceArray']['checked'],
                                               'attr'     => array('class' => 'checkbox')))
        ->add('foo_disabled', 'hidden', array('data' => $disabledString))
    ;
}
...

这是 JavaScript 部分(Twig-template):

function disableModule()
{
    var disabledString = $('#foo_disabled').val();

    var disabledArray = disabledString.split('|');

    $.each( disabledArray, function( disKey, disVal )
    {
        // deactivate checkboxes
        $('input[id="'+idCurrent+'"]').attr("disabled", true);

        // grey out label for checkboxes
        $('label[for="'+idCurrent+'"]').attr("style", "color: gray;");
    });
}

在我的 Entity/Foo.php 中,我必须使用 setter 和 getter 方法添加字符串类型的属性“foo_disabled”。

于 2013-08-18T18:04:13.873 回答
0

此页面首先出现在“twig checkbox check and disabled”的 Goole 搜索结果中要在 twig 中设置某些复选框输入已选中或/和禁用,可以使用choice_attr

public function buildForm(FormBuilderInterface $builder, array $options): void
{
    $builder
        ->add('email', EmailType::class, ['label'=>'Login: '])
        ->add('roles', ChoiceType::class, [
            'label'=>'Role: ',
            'multiple'=>true,
            'expanded'=>true,
            'choices'=>['User'=>'ROLE_USER','Admin'=>'ROLE_ADMIN'],
            'choice_attr'=> [
                'User' => ['disabled'=>'disabled', 'checked'=>'checked'],
                ]
            ])
        ->add('password', PasswordType::class, ['label'=>'Password: '])
        ->add('register', SubmitType::class, ['label' => 'Register'])
    ;
}

在此示例中,我为 ROLE_USER 设置了选中和禁用复选框,因为这是默认角色。

于 2021-12-20T11:28:04.523 回答