1. Creating events by adding them to the schedulerDataSource programatically
2. Everything works, except recurring events
3. As soon as a recurring event exists, all events are messed up - displayed in wrong time slots, and remaining calendar events wont display at all.
Exception is:
kendo.all.js line 61287
Uncaught TypeError: Cannot read property 'recurrenceException' of undefined
_addExceptionDate: function(e) {
var t = e.start
, n = this.reader.timezone
, i = this.get(e.recurrenceId)
, r = i.recurrenceException || "";
L.isException(r, t, n) || i.set(se, r + L.toExceptionString(t, n))
}
The offending line is:
r = i.recurrenceException || "";
i is the Recurrence ID of the Event.
i cannot have a child property, from what I see, called recurrenceException. Why wouldnt r = this.get(e.recurrenceException)?
Looking for a solution - this is a time sensitive project (of course) and this one issue is holding up everything else from being delivered; all of the remaining functions and features are great and working, so I think I have a grasp on it, but this one is not working.