How to make a drop down list in yii2?

前端 未结 12 2036
天命终不由人
天命终不由人 2020-12-04 13:07

How to make a dropdown in yii2 using an activeform and a model? Since all the methods has changed in yii2,how it is done

12条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-04 13:39

    Html::activeDropDownList($model, 'id', ArrayHelper::map(AttendanceLabel::find()->all(), 'id', 'label_name'), ['prompt'=>'Attendance Status'] );

提交回复
热议问题