首页 > 解决方案 > How to avoid multiple scroll events in virtualisation in angular grid?

问题描述

I have a grid control written in angular, it has implement Virtualization.

The Virtualization is implemented as following.

  1. load the first 60 records in the grid on initial load.
  2. every time user scrolls down load another 60 records.
  3. the records to be loaded are decided by the scrollTop position if the scroll.

My solution has the following issues:

How can I fix this?

标签: javascriptangularvirtualization

解决方案


推荐阅读