how to keep selected value on Yii2 html::dropddownlist?

前端 未结 1 2082
渐次进展
渐次进展 2021-01-29 13:51

i have the following code in my view:

相关标签:
1条回答
  • 2021-01-29 14:01

    It is very simple, you must pass integer $region_id only:

    <?=Html::dropdownList('region', $region_id,
    ArrayHelper::map(Ethioregion::find()->all(),'region','region'),[
            'prompt' => 'Select Region..','style'=>'width:200px',]) ?>
    
    0 讨论(0)
提交回复
热议问题