We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Below is how I'm using infinite scroll with mat-select:
I've checked and found that when mat-options are put inside of div onscroll stops working.
<div class="general-input-block filter"> <label>Amenities</label> <mat-select msInfiniteScroll (infiniteScroll)="loadAmenities()" panelClass="general-select" [(value)]="selectedAmenities" class="input" placeholder="Select Amenity" (selectionChange)="loadReservations();" multiple> <div class="select-scroll-block select-scroll-block-amenity select-options-block checkbox-dropdown"> <mat-option [value]="amenity.id" *ngFor="let amenity of amenities"> {{ amenity.name }} </mat-option> </div> </mat-select> </div>
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Below is how I'm using infinite scroll with mat-select:
I've checked and found that when mat-options are put inside of div onscroll stops working.
The text was updated successfully, but these errors were encountered: