Is there a way to setup Kendo UI Scheduler in timeline view to show a time span across midnight? If startTime and endTime are in the same day all works fine, if I set two different days it show nothing
This is a two days example with custom view like you addressed http://dojo.telerik.com/@purchased.software@deltatre.com/ihIzI
With this parameters it works fine
date: new Date("2016/4/18")
startTime: new Date("2016/4/18")
endTime: new Date("2016/4/19")
Also with these parameters
date: new Date("2016/4/18")
startTime: new Date("2016/4/18 8:00:00 AM")
endTime: new Date("2016/4/19 8:00:00 PM")
BUT with start hours (8PM) greather than end hours (8AM) it won't work
date: new Date("2016/4/18")
startTime: new Date("2016/4/18 8:00:00 PM")
endTime: new Date("2016/4/19 8:00:00 AM")