Example of Working Days in Blazor Scheduler Component
This demo showcases how to set customized working days as well as first day of a week and the way to show or hide the weekend days of a week on Scheduler.
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
In this demo, the working days of a week can be set on Scheduler using the WorkDays property which accepts the collection of day indexes (from 0 to 6) of a week. By default, it is set to [1, 2, 3, 4, 5]
and in this demo, it has been set to [1, 3, 5]
which means that
Monday, Wednesday, and Friday
are set as working days of the week and are visually differentiated from non-working days. The working hours usually apply only on these given working days.
The ShowWeekend property is used either to show or hide the weekend days of a week and it is not applicable on WorkWeek
view. By default, it is set to
true
. The days which are not a part of the working days collection of a Scheduler are usually considered as weekend days here.
The first day of the week can also be set on the Scheduler by using the FirstDayOfWeek property, which will make the Scheduler to start with that day.
Note: Here, Sunday is always denoted as 0, Monday as 1 and so on.