ng-mat-select-infinite-scroll
ng-mat-select-infinite-scroll copied to clipboard
Support for MatAutocomplete
Hi
MatSelect and MatAutocomplete are very similar elements and I would expect to use this directive with MatAutocomplete. Here is my code :
<mat-autocomplete
msInfiniteScroll
(infiniteScroll)="nextBatch()"
[complete]="endOfOptions"
>
<mat-option *ngFor="let option of optionsBatch$ | async" [value]="option">
{{option}}
</mat-option>
</mat-autocomplete>
Unfortunately the nextBatch
function gets called only once but not when scrolling. I can never go beyond the 1st batch.
Is it possible to add support for MatAutocomplete ?
Thx
Hi, I also think about it and found this. Maybe this is the way to go: https://github.com/bithost-gmbh/ngx-mat-select-search-example/tree/master/src/app/examples/08-infinite-scroll-example
Lexanius