ng2-ui / auto-complete

Angular Auto Complete component and directive
http://ng2-ui.github.io/auto-complete/
MIT License
280 stars 124 forks source link

valuechanged event does not work (even on your demo) #222

Closed HoosierWrangler closed 7 years ago

HoosierWrangler commented 7 years ago

See http://plnkr.co/edit/3pB1Gx?p=preview and look at the console as your instructions say, totally blank, we're going to have to switch controls, uggh, like this one too.

allenhwkim commented 7 years ago

valueChanged is only get fired when you selected from list.

If you are looking for input value change, use ngModelChange, <input [ngModel]="model1" (ngModelChange)="valueChanged($event)"/>

image