Yii v2 snippet guide

Comparing #202 with #203

Revision #203 was created by rackycz rackycz on Jun 30, 2020, 11:17:58 PM.

FK DropDown

Content

[...]
],

// ...

```

 
**Drop down list for foreign-key column**
 
Do you need to specify for example currency using a predefined list, but your view contains only a simple text-input where you must manually enter currency_id from table Currency? 
 
 
Read how to enhance it. You only need models with predefined relations - this can be done using GII when relations are defined in MySQL. How to create relations [manually](https://www.yiiframework.com/doc/guide/2.0/en/db-active-record#relational-data).
 
 
---
 
```php
 
use yii\helpers\ArrayHelper;
 
use app\models\Currency; // My example uses Currency model
 
 
$currencies = Currency::find()->asArray()->all();
 
 
// 'id' = the primary key column
 
// 'name' = the column with text to be dispalyed to user
 
// https://www.yiiframework.com/doc/api/2.0/yii-helpers-basearrayhelper#map()-detail
 
$currencies = ArrayHelper::map($currencies, 'id', 'name'); 
 
 
<?= $form->field($model, 'id_currency')->dropDownList($currencies) ?>
 
```