Hi, Im trialing this library at the moment. We have it wired up, and all displays correctly, works great. We have moved up to see how it handles large datasets.
Currently it spends 10 seconds rendering the calendar with 3000~ events, and a full 8 of those seconds is fromStringSortable throwing exceptions telling me the dates are in the incorrect format.
Also occurs onScroll etc.
The error message says - "Invalid string format (use '2010-12-31' or '2010-12-31T23:50:00'): 2021-10-25"
You can see at the end - I am providing it in the format it wants.
Start/end is generated from -
toCalendarDateString(date: Date): string {
return date.toISOString().split('T')[0];
}
Is this a known issue?
Difficult to debug this with the minified version. Build - 2021.2.4990
Thanks!