I have created a schedule and allowed for the user to filter the people (grouping) that are shown on the schedule. When I retrieve the filtered people (I only have one, I call:
j$("#scheduler").data("kendoScheduler").resources[0].dataSource.read();
After, I read and refresh my schedule, first retrieving data and assigning to an array, and then calling:
scheduler.dataSource.read();
The first time that I do this, I get an error from executing that line saying "Cannot read property '_continuousEvents' of undefined". However, if I filter the people anytime after that, I don't get an error and everything completes successfully. Any ideas?