0

I can't seem to get the Kendo UI Scheduler to stop treating Saturdays and Sundays as non-work days? I'd like to stop showing the gray for Saturdays and Sundays. How do I set which days are work days?

Ageonix
  • 1,748
  • 2
  • 19
  • 32
csells
  • 2,453
  • 1
  • 20
  • 18

1 Answers1

3

You can set workWeekEnd to an integer value. The default is 5, which is Friday. Setting it to 6 will make Saturday appear as a workday, and 7 makes Sunday appear as such.

Example:

$("#scheduler").kendoScheduler({
    workWeekEnd: 6
});

Source: http://docs.telerik.com/kendo-ui/api/web/scheduler

ssmith
  • 8,092
  • 6
  • 52
  • 93