DayPilot.Month.events.list

The events.list property holds an array with the monthly 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:"2025-12-18T14:00:00", 
    end:"2025-12-18T16:00:00", 
    id: 1, 
    text: "Meeting"
  }
];