Seems like the Agenda view is the way to achieve it, and to fiddle with the Javascript
var CustomAgenda = kendo.ui.AgendaView.extend({
endDate: function() {
var date = kendo.ui.AgendaView.fn.endDate.call(this);
return kendo.date.addDays(date, 31);
}
});
And
views: [
"day",
"week",
// "custom agenda",
{ type: "CustomAgenda", title: "Custom Agenda" }
],
Does anyone know how to add this to the initialisation script? The key seems to be the
return kendo.date.addDays(date, 31);