kevinhoelscher

Results 2 comments of kevinhoelscher

@zmbq You should be able to achieve what you want if you define it this way: ``` myFilter = ((prefix: string): Observable => { return Observable.from(this.options.filter((s)=>s.toLowerCase().startsWith(prefix.toLowerCase())); }).bind(this); ``` I did...

I've been testing this locally and may have a workaround. It seems to work if you use the one-way data binding syntax: `[open-on-focus]="false" // works` `open-on-focus="false" // doesn't work` Note...