serverUTC

allows loading and saving dates in UTC format

boolean serverUTC;

Example

webix.ui({
  view: "scheduler",
  url: "https://docs.webix.com/calendar-backend/",
  serverUTC: true // incoming/outgoing date is marked as UTC
});


Default value:

false

Related samples

Details

If the property is set to true, Scheduler parses dates from UTC to local time upon loading. Upon saving dates are parsed from local time to the UTC format.

See also
Back to top