Our powerful JS Calendar component


Post by skamath »

Can you atleast tell me all the possible situations when dateRangeRequested is fired?

For instance, activeItemChange will fire dateRangeRequested, similarly I want to know all possible situations when dateRangeRequested is fired.


Post by Animal »

If you look at the source property of that event, you can see that it is fired from the data layer. It's fired by the EventStore. It is a pure data layer event.

So it is fired whenever any view needs to refresh itself for any reason.

So when any event is changed is changed or deleted or loaded or a view changes the date range it is looking at.

Or, if its visible event count depends on its size like MonthView and CalendarRow, when it is resized - because it has to refresh itself, and refreshing entails requesting data from the EventStore.

What is your application requirement?


Post Reply