如何在Sonata管理中选择一个单选按钮时禁用单选按钮



例如,我有一个以 null 开头的实体字段,一旦选择单选按钮并将其保存到实体中,就会在管理页面中显示单选按钮,那么这些单选按钮需要"禁用",仍然可见但并不棘手。

protected function configureFormFields(FormMapper $form)
{
    $form->add('radio_buttons', ChoiceType::class,
    array('choices' => array(
        "choice 1" => 'input1',
        "choice 2" => 'input2'),
        'choices_as_values' => true, 'multiple'=>false, 'expanded'=>true, 'disabled' => false));
}

您可以在表单中放置一个条件来检查字段是否已填充。(假设该方法名为getRadioButton(((

if ($this->getSubject()->getRadioButton() != null) {
    $form->add(here tell than you need disabled buttons)
} else {
    $form->add(here tell than you need buttons)
}

此外,在表单字段中,您可以添加"HTML"属性:

->add('radio_buttons', ChoiceType::class,array(
    'what you want'=>'ok',
    'attr'=>array("disabled" => true))

所以最后它会给出类似的东西

if ($this->getSubject()->getRadioButton() != null) {
    $form->add('radio_buttons', ChoiceType::class,
    array('choices' => array(
         "choice 1" => 'input1',
         "choice 2" => 'input2'),
         'choices_as_values' => true,
         'multiple'=>false,
         'expanded'=>true,
         'attr' => array('disabled'=>true),
    ));
} else {
     $form->add('radio_buttons', ChoiceType::class,
     array('choices' => array(
         "choice 1" => 'input1',
         "choice 2" => 'input2'),
         'choices_as_values' => true,
         'multiple'=>false,
         'expanded'=>true,
     ));
}

欲了解更多信息:

https://sonata-project.org/bundles/doctrine-orm-admin/master/doc/reference/form_field_definition.html

在你的视图中做。

检查其中一个选项是否存在,如果存在,则实现不同的代码。

我还会重新命令删除单选按钮(如果存在(,并替换为文本。这将防止一些聪明人编辑 DOM 并更改选择。

相关内容

  • 没有找到相关文章

最新更新