occurrence_timestamp_in_utc

allows working with recurring events independently of time zones

boolean occurrence_timestamp_in_utc;

Example

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


Default value:

false
Details

The property requires the recurring extension to be enabled.

Watch out! The option is intended for 'newborn' schedulers with no existing recurring events. Applying to the scheduler with already existing recurring events will break them.

  • If the option is enabled, timestamps of events are stored as UNIX time.
  • The option is available from version 3.5.
See also
Back to top