How to make a drop down list in yii2?

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

    There are some good solutions above, and mine is just a combination of two (I came here looking for a solution).

    @Sarvar Nishonboyev's solution is good because it maintains the creation of the form input label and help-block for error messages.

    I went with:

    
    field($model, 'parent_id')
         ->dropDownList(
                ArrayHelper::map(Product::find()->asArray()->all(), 'parent_id', 'name')
                )
    ?>
    

    Again, full credit to: @Sarvar Nishonboyev's and @ippi

提交回复
热议问题