start_on_monday

sets the start day of weeks

boolean start_on_monday;

Example

scheduler.config.start_on_monday = false;
...
scheduler.init('scheduler_here',new Date(2013,05,11),"week");


Default value:

true
Applicable views:Month View, Week View, Week Agenda View, Year View

Related samples

Details

If the parameter is set to true, a week will start from Monday (otherwise, from Sunday).

Back to top