So further to this I have been trying various methods to achieve this and I have extracted the "uid" for each of the events that I would like to select which are in an array.
I then pass the array to the scheduler.select method however the events are not being selected.
Any help on this would be gratefully appreciated
for help with what I'm doing this is what I am doing in the code
var
scheduler = $(
"#template"
).getKendoScheduler();
var
events = scheduler.occurrencesInRange(startTime, endTime);
var
selected : any = [];
events.forEach(
function
(element: { uid: any; }) {
selected.push(uid);
});
scheduler.select(selected);