带有禁用选项的 Symfony Choice 类型
Symfony Choice type with disabled options
Symfony 是否有任何方法可以根据给定 choices
选项的真实性来呈现具有禁用选项的 <select>
表单类型?
我看到 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>
我只是找不到路...
是否有必要建立自己的字段类型?
根据表单布局:
以及 choice_widget_collapsed 和 choice_widget_options,我认为直接使用 Symfony 的默认选择形式是不可能的。
你可以试试:
- 构建您自己的 Choice 表单(通过扩展现有表单并将参数添加到选项列表,我认为这是最好的方法)
- 使用javascript/jquery在加载时使用来自
的现有 Symfony's Choice 修改选项参数
从 2.7 版开始,Symfony 引入了一种使用可调用对象设置选择属性的方法,这正是您所需要的。
此代码取自官方 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'] : [];
},
...
Symfony 是否有任何方法可以根据给定 choices
选项的真实性来呈现具有禁用选项的 <select>
表单类型?
我看到 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>
我只是找不到路... 是否有必要建立自己的字段类型?
根据表单布局:
以及 choice_widget_collapsed 和 choice_widget_options,我认为直接使用 Symfony 的默认选择形式是不可能的。
你可以试试:
- 构建您自己的 Choice 表单(通过扩展现有表单并将参数添加到选项列表,我认为这是最好的方法)
- 使用javascript/jquery在加载时使用来自 的现有 Symfony's Choice 修改选项参数
从 2.7 版开始,Symfony 引入了一种使用可调用对象设置选择属性的方法,这正是您所需要的。
此代码取自官方 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'] : [];
},
...