如何在Yii2的下拉列表中添加占位符?

时间:2017-05-10 10:53:04

标签: yii2

我需要在我的dropdown中添加一个占位符,但它不起作用。

这是我的输入字段:

<?= $form->field($category, 'id')->dropDownList($categoryList, [
    'id' => 'category-id',
    'prompt' => 'Select category', [
        'disabled' => true,
       ]
]); ?>

有人可以解释一下我做错了什么吗?谢谢你的帮助!

1 个答案:

答案 0 :(得分:8)

DropDownList没有placeholder,而是使用'prompt'

$form->field($category, 'id')->dropDownList($categoryList, [
    'id' => 'category-id',
    'prompt'=>'- Select category -'
]);