How to update selected value’s id in hidden field? i have used typeahead:selected event but not getting any soution.
My Response is as below
[{"id1":"value1","id2":"value2"..}]
Typeahead with remote search :
<?= $form->field($model,'city')->widget(Typeahead::className(),[
'options' => ['placeholder' =>'Please enter a city'],
'pluginOptions' => ['highlight'=>true],
'scrollable' => true,
'dataset' =>[
[
'prefetch' => Url::to(['airports/city-selector']),
'limit' => 10,
'remote' => [
'url' => Url::to(['airports/city-selector']) . '?q=%QUERY',
'wildcard' => '%QUERY'
]
]
],
'pluginEvents' => [
"typeahead:selected" => 'function(ev, resp) {console.log(ev,resp); $("#airports-city_id").val(resp.kod); }',
]
]);
Textbox
<?= $form->field($model, 'city_id')->textInput(['maxlength' => true]) ?>