Autocomplete in yii2
问题 In Yii2 I want one of my input field to be autocomplete when user starts to type.Below is my code which uses Jui Autocomplete . <?php $items= ArrayHelper::map(Company::find()->all(), 'c_id', 'name'); echo AutoComplete::widget([ 'model' => $model, 'attribute' => 'company', 'clientOptions' => [ 'source' => $items, ], ]);?> This is not working.When i printed my array, i got like Array ( [1] => abc [2] => xyz [4] => pqr ) I got it working when i manually set like $items=['abc','xyz','pqr']; The