DayPilot.Scheduler.events.list

An array that holds event calendar data.

The structure of the array items must follow the DayPilot.Event.data structure.

The events will be displayed after calling init() or update().

Default Value

null

Example

dp.events.list = [
  {
    start:"2015-12-18T14:00:00", 
    end:"2015-12-18T16:00:00", 
    id: 1, 
    text: "Meeting",
    resource: "A"
  }
];