【发布时间】:2014-10-21 18:03:32
【问题描述】:
我在 symfony2.5 中有一个表单类型,它的选择类型有很多动态设置为的选项
public function buildForm(FormBuilderInterface $builder, array $options)
{
$builder->add('service_id', 'choice', array(
'label' => 'Service',
'choices' => $this->getChoice()
));
.......
.......
}
protected function getChoice()
{
$choices = array();
$options = array(
'1' => 'test1',
.............
);
foreach($options as $key => $option)
{
if($key%2 == 0) {
....
} else {
////disabled choice
}
}
}
如何设置此选项集禁用?
【问题讨论】:
标签: symfony