recurring_overflow_instances

defines the behavior of the recurrences that transfer to the next month

string recurring_overflow_instances;

Values

  • "skip"|"lastDay"|"none"
  • Example

    scheduler.config.recurring_overflow_instances = "lastDay";


    Default value:

    undefined
    Details

    The property requires the recurring extension to be enabled.

    Let's take an event that occurs every month on the 30th and consider its behavior in February for each option:

    • "skip" - skips the event that happens on the date that does not exist. The event will be skipped in February.
    • "lastDay" - moves the event that happens on the date that does not exist to the last day of the month. The event will occur on February 28th.
    • "none" - moves the event that happens on the date that does not exist to the first day of the next month. The event will occur on March 1th.

    If the option is undefined, the "skip" behavior will be applied.

    Change log

    added in v5.3.11

    Back to top