Hi
I am trying to use the Kendo Scheduler for a roster application. Our client has a long working hour spanning the day boundary, from 9am to 2am (next day). I try to configure the Kendo schedule HTML control to do it but without success so far, please help, this might be a potential bug.
I have tried to set working day setting of the scheduler
workDayStart: new Date(1901, 1, 1, 9, 0, 0),
workDayEnd: new Date(1901, 1, 1,23, 0, 0),
and I have tried to set the range of the timeline view
views: [{type: 'timeline', title: 'Shift working hour view', startTime: new Date(1901, 1, 1, 8, 0, 0), endTime: new Date(1901, 1, 2, 3, 0, 0)}]
Both of above give me the same result, the schedule grid is showing correctly with the correct start and end time (spanning the day range), however none of my events are showing.
The events works fine if I use the show full day option or if when I set the startTime and endTime to be on the same day. Is this a bug in the scheduler or I am missing something here.
I have manage to replicate this issue using a Scheduler demo code as base
http://demos.telerik.com/kendo-ui/scheduler/resources-grouping-vertical
and my modification in Dojo where I apply the custom time range and events are not displaying anymore
http://dojo.telerik.com/@shenglin@mhinteractive.co.nz/ECAWO/3
Thank you
Shenglin