Welcome to the Angular feedback portal. We’re happy you’re here! If you have feedback on how to improve the Angular, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

When using InfiniteScroll with cache enabled, the grid is prevented from scrolling once the cache maxBlocks has been reached.
This is due to the isScroll value in infinite-scroll.ts being false. Which triggers an auto-scroll to the top.

In infiniteScrollHandler(e: Event) the isScroll variable is set to true based on a 600ms timeout. If the data loads slower than that, it  be set to false by removeInfiniteCacheRows(e: ...) 

Once you load the 3rd page, you will observe the issue.

Method of reproducing:

I enabled the cache in app.component.ts: this.infiniteOptions = { initialBlocks: 1, enableCache: true, maxBlocks: 2 }; 

and added a 2000ms delay in order.service.ts: .pipe(delay(2000), (data: any) => data);