orizens / ngx-infinite-scroll

Infinite Scroll Directive for Angular
https://www.npmjs.com/package/ngx-infinite-scroll
MIT License
1.25k stars 223 forks source link

ngx-infinite-scroll is not working from seconds scroll #347

Closed eldhose-cavli closed 4 years ago

eldhose-cavli commented 4 years ago

<div class="search-results" infiniteScroll [infiniteScrollDistance]="2" [infiniteScrollThrottle]="50" [fromRoot]="false" (scrolled)="onScroll()"> <button *ngFor="let data of result " > </button> </div>

janakiram-madurai commented 4 years ago

Hi how u resolved this issue?

eldhose-cavli commented 4 years ago

<div class="search-results" style="height:100%;overflow-y:auto;" infiniteScroll [infiniteScrollDistance]="2" [infiniteScrollThrottle]="50" [fromRoot]="false" [scrollWindow]="false" (scrolled)="onScroll()"> <button *ngFor="let item of List ; trackBy:trackByFn" > </button> </div>

janakiram-madurai commented 4 years ago

Adding the style resolved your issue?