我需要在我的dropdown
中添加一个占位符,但它不起作用。
这是我的输入字段:
<?= $form->field($category, 'id')->dropDownList($categoryList, [
'id' => 'category-id',
'prompt' => 'Select category', [
'disabled' => true,
]
]); ?>
有人可以解释一下我做错了什么吗?谢谢你的帮助!
答案 0 :(得分:8)
DropDownList
没有placeholder
,而是使用'prompt'
:
$form->field($category, 'id')->dropDownList($categoryList, [
'id' => 'category-id',
'prompt'=>'- Select category -'
]);