Guest User

Untitled

a guest
Jul 29th, 2016
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?= $form->field($model,'city')->label(false)->widget(yiijuiAutoComplete::className(),[
  2. 'clientOptions' => [
  3. 'source' => ArrayHelper::getColumn(appmodelsCity::find()->select('city_name_ru')->all(),'city_name_ru'),
  4. ],
  5. 'options' => [
  6. 'class' => 'form-control',
  7. 'placeholder' => 'Город',
  8. 'value' => $city
  9. ]
  10. ])?>
  11.  
  12. appmodelsCity::find()->select('city_name_ru')->limit(100)->all();
Add Comment
Please, Sign In to add comment