Olena Rozhko

Results 2 comments of Olena Rozhko

@MatDepInfo you can fix it with custom directive: ``` @Directive({ standalone: true, selector: '[scrollableContainer]' }) export class ScrollableContainerDirective { @Input() selectorRef: NgSelectComponent; @HostListener('scroll', ['$event']) onScroll() { this.selectorRef?.dropdownPanel?.adjustPosition(); } } ```...

@MatDepInfo have you tried to use up-to-date ng-select version? I see in provided example old version: ` "@ng-select/ng-select": "^5.0.6",`