Hello,
I have a scheduler setup (Kendo UI) with a recurring event every 2 weeks. Everything seems fine until you get to the New Year, it then goes to the first of the year (even though that is only 1 week away from 12/25/2015) and then continues to recur every 2 weeks from 01/01/2016.
$("#dvCalendar").kendoScheduler({
date: new Date(),
views: [{ type: "month" }],
selectable: false,
dataSource: {
data: [{
id: 1,
start: new Date("2015/11/13 8:00"),
end: new Date("2015/11/13 17:00"),
title: "Payday",
description: "Payday",
recurrenceRule: "FREQ=WEEKLY; INTERVAL=2;"
}],
},
editable: false,
});
Result is fine until 12/25/2015, it then goes to 1/1/2016 and proceeds to recur every 2 weeks from 1/1/2016...
Am I missing a setting or something? I am using version "Kendo UI Beta v2015.3.916" of the file kendo.web.min.js.
Thanks!