Shown here is a good demo for kendo jquery scheduler http://demos.telerik.com/kendo-ui/web/scheduler/index.html
My questions is : is it possible to modify the colors of the date header cells (i.e. cell on the left of each row that contains the date).. for example I want the first 8 hours to be colored as green, next eight red and so on
The date header cell is shown in the toolbar on the top; what you're talking about are the time header cells.
I don't think there's a configuration option - you can try using the
majorTimeHeaderTemplate
like this:(demo)
Unfortunately you can't change the style of the container using the template, so if you don't like the whitespace, you'd have to modify the source code in
kendo.ui.DayView.fn._layout
; I'm only pasting the relevant excerpt here - the idea is to add another class to the row depending on the hour:(demo)
You could use a similar approach for other view types.