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'
]);