recurrenceException String

The recurrence exceptions. A list of comma separated dates formatted using the yyyyMMddTHHmmssZ format string.

Example - get the event recurrence exception field

<script>
var event = new kendo.data.SchedulerEvent({
    id: 1,
    start: new Date("2013/9/2 12:00"),
    end: new Date("2013/9/2 12:30"),
    title: "Lunch",
    recurrenceRule: "FREQ=DAILY",
    recurrenceException: new Date("2013/9/3 12:00").toISOString()
});
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(event.recurrenceException); // outputs the recurrence exception
</script>
In this article