recurring_workdays

specifies working days that will affect the recurring event when the user selects the ""Every workday" option in the lightbox

array recurring_workdays;

Example

//sets working days from Tuesday to Friday
scheduler.config.recurring_workdays = [2, 3, 4, 5];


Default value:

[1, 2, 3, 4, 5]
Details

The property requires the recurring extension to be enabled.

Back to top