Ofer Herman
Ofer Herman
see #317
Hi @thilankascentic, you can set `ngModel` value
set the value of `ngModel` to the value you want to be selected
you can set `searchFields` to null see [here](https://github.com/oferh/ng2-completer/blob/master/demo/native-cmp.ts#L100)
do you mean use it like a select component?
Hi, There's no event for `no result found`, but it may be done by implementing a custom data provider. What is your data source?
please use the beta version `npm i --save ng2-completer@beta`
Hi, you shouldn't create a different data service every time, you should pass the results as observable see this [plunker](https://plnkr.co/edit/fmDvpV?p=preview) for an example.
@puntapret you can create a `Subject` use it as the data for `this.completerService.local()` and each time you have a new set of items just call `mySubject.next(items)`
b.t.w change of the data source is supported