I have not seen code on how to create a data model to update the view? assume I have thousands of events, how to let FullCalendar only reading the current date view entries?
Hi, I am not sure, what exactly you mean, since there is a sample on the “Code Samples” page on how to add, update or remove entries.
What you want to do is more a lazy loading feature using some kind of callback, which is not supported directly by the Flow addon. You can try to combine the add/remove together with the DatesRenderedEvent (addDatesRenderedListener) to remove previously added events and then only add those for the current month. To prevent flickering behavior, this may be optimized to load only entries of the current and previous/next month or year, depending on the view you are currently viewing.