欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ActiveForm 的下拉菜單 dropDownList

程序员文章站 2022-06-12 08:17:11
...

一句話總結

就是dropDownList裏面放入需要的數組 和默認項prompt

<?= $form->field($model,'status')->dropDownList([
    'active'=>'Active','inactive'=>'Inactive',
    'prompt'=>'Select Status'
])->label(false);

附:
這裏面的數組是常量,可以數據庫查詢導入值來做。例:

<?=$form->field($model,'status')->dropDownList([
    ArrayHelper::map(User::find()->all(),'status','id'),
    'prompt'=>'Select Status'
]);