@syncfusion/ej2-schedule 30.1.37 → 30.1.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14639,7 +14639,8 @@ class VirtualScroll {
14639
14639
  if ((conWrap.scrollTop) - this.translateY < 0) {
14640
14640
  resCollection = this.upScroll(conWrap, firstTDIndex);
14641
14641
  }
14642
- else if (conWrap.scrollTop - this.translateY > scrollHeight) {
14642
+ else if ((conWrap.scrollTop + conWrap.clientHeight >= conWrap.scrollHeight - this.itemSize) ||
14643
+ (conWrap.scrollTop > (this.translateY + scrollHeight))) {
14643
14644
  resCollection = this.downScroll(conWrap, firstTDIndex);
14644
14645
  }
14645
14646
  if (!isNullOrUndefined(resCollection) && resCollection.length > 0) {