Hey,
I am using DayPilot Pro for JavaScript 2022.2.5271 (trial).
There seems to be a problem, if the dynamic content that gets loaded on scroll is changing the height of the Calendar.
If I scroll all the way left, until the ajax request won't find any results, the height of the calendar gets smaller which triggers the scroll event again.
The same happens initially, if the size of the calendar is changed via scroll event.
It works with the workaround:
https://forums.daypilot.org/question/4544/angular-scheduler-horizontal-scroll-position
`
this.scheduler.nav.scroll.addEventListener('scroll', (e) => {
this.debounceScrollEvent();
});
`