我正在尝试为编辑页面创建一个组合框。
echo $this->Form->select('status',
['empty' => 'Select Status'],
['class' => 'form-control', 'required']
);
在这里,我想添加两件事:
$options = array('0' => 'Inactive',
'1' => 'Active',
);
和选定的值。假设这是$ status;
我尝试了不同的选项,但有时它不添加类,有时它会在标记
中显示选项如果有人提供线索,那将是很棒的。
由于
答案 0 :(得分:1)
<?= $this->Form->input('status',
[
'type' => 'select',
'options' => ['0' => __('Inactive') , '1' => __('Active')],
'empty' => __('Select Status'),
'class' => 'form-control',
'required' => true, 'label' => __('Type')
]
)
?>