Rafał Golonko
Rafał Golonko
In my case working solutions is: Add `@ViewChild('autoComplete') autoComplete: AutoComplete;` In callback method `onPanelShow `i added a line: `this.autoComplete.scroller.unbindResizeListener();` Function onResize in scroller component imo is the source of the...
For workaround I've used `@ViewChild('ms') multiselect: MultiSelect;` and in callback `onFilter()` calling `this.multiselect.focusedOptionIndex.set(this.multiselect.findFirstOptionIndex())` will do the job :)
In my case working solutions is: 1. Add `@ViewChild('autoComplete') autoComplete: AutoComplete;` 2. In callback method `onShow` i added a line: ``` asyncScheduler.schedule(() => { autoComplete.scroller.unbindResizeListener(); clearTimeout(autoComplete.scroller.resizeTimeout); }); ``` Wrapping in...