-
Notifications
You must be signed in to change notification settings - Fork 18
Open
Labels
Description
Currently the calendar is loading the entire data set contained by the store.
This is inefficient, especially with asynchronous stores like JsontRest store.
A better way to manage data would be to:
- add to the query options the time range to display (start & end time) automatically
- provide a function to set to a SimpleQueryEngine that tests if a data item is in the displayed time range.
In addition, a new cache class that takes a master store could be provided to query this master store for a greater time range and allow local navigation when the data is already loaded. This duration of this time range would be configurable.