isException
Checks whether the event is a recurrence exception.
Returns
Boolean
return true
if event is a recurrence exception.
Example - check whether an event is an exception
<script>
var event = new kendo.data.SchedulerEvent({
id: 2,
recurrenceId: 1, //id of the recurrence head event
title: "Task1",
start: new Date("2013/4/4"),
end: new Date("2013/4/4")
});
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(event.isException()); //logs 'true'
</script>