Yii2: Using Kartik Depdrop Widget?
Ok I am trying to use the Kartik Depdrop widget, all I am getting a white drop-down list that is values not showing in the dependent drop-down list. I have a state model and a city model and I have it setup like this. In _form.php $catList=ArrayHelper::map(app\models\State::find()->all(), 'id', 'state_name' ); echo $form->field($model, 'state')->dropDownList($catList, ['id'=>'state_name']); echo $form->field($model, 'district_city')->widget(DepDrop::classname(), [ 'options'=>['id'=>'district_city'], 'pluginOptions'=>[ 'depends'=>['state_name'], // the id for cat attribute 'placeholder'=>