yii2 autocompelete not work for me

66 Views Asked by At

i have table that have developer_id, name, family .etc columns i want to show suggest name in input in view i did something like this but this give me a input whitout any suggestion and autocompelte why?

$data = Developers::find()
    ->select(['name as value', 'name as  label','developer_id as id'])
    ->asArray()
    ->all();

    echo AutoComplete::widget([
        'name' => 'dname',
        'id' => 'ddd',
        'clientOptions' => [
            'source' => $data,
            'autoFill'=>true,
            'minLength'=>'1',
            'select' => new JsExpression("function( event, ui ) {
            $('#aa').val(ui.item.id);
        }")],
    ]);
     ?>
<input id="aa"  value="" type="hidden">
1

There are 1 best solutions below

1
On

I copied and pasted your code in one of my views. I just changed your model so I am using one of my models (tables). Your code works perfectly in my view. So I think you should check if the problem is one of these:

  1. You are not correctly importing one of these:

    use backend\models\Developers;

    use yii\jui\AutoComplete;

    use yii\web\JsExpression;

  2. Your table Developers is empty

  3. In the part of your code that says:

    ->select(['name as value', 'name as label','developer_id as id'])

    Are you sure your table developer has the columns name and developer_id?