How to make a drop down list in yii2?

前端 未结 12 2033
天命终不由人
天命终不由人 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:41

    field($model, 'attribute_name')->dropDownList(
             ArrayHelper::map(Table_name::find()->all(),'id','field_name'),
            ['prompt' => 'Select']
    ) ?>
    

    This will help you...Don't forget to use the class file in header.

提交回复
热议问题