getEvents

returns a collection of events which occur during the specified period

array getEvents( [Date from,Date to] );
fromDatethe start date of the period
toDatethe end date of the period
arrayan array of event objects

Example

const evs = scheduler.getEvents(new Date(2024,1,10),new Date(2024,2,10)); 
evs.forEach((e) => console.log(e.text));
// or
const evs = scheduler.getEvents();// will return all events

Related samples

Details

If support for recurring events is activated, the behavior of the getEvents method depends on whether "from-to" parameters are specified.

Using getEvents with Recurring Events

  • If from-to parameters are provided, the method will return all single events, occurrences of recurring series, and their modified instances within the specified range:
const today = scheduler.date.day_start(new Date());
const nextWeek = scheduler.date.add(today, 1, "week");
const events = scheduler.getEvents(today, nextWeek);
  • If from-to parameters are not provided, the method will return all single events, recurring series (as entries, not individual occurrences), and their modified/deleted instances. However, the individual dates of occurrences for the recurring events will not be included.

In versions earlier than v7.1.2, the getEvents method required "from-to" parameters when recurring events were enabled. Without these parameters, the method would return an empty array, as the recurring extension allowed endless sequences of events, making it impractical for the method to return an endless array.

If recurring events are disabled, the method will work correctly as with parameters as without them. But in case you don't specify any parameters, the method will return all events.

Change log

updated in v7.1.2

Back to top