startTimezone String

The timezone of the start date.

Example - get the event start timezone

<script>
var event = new kendo.data.SchedulerEvent({
    id: 1,
    title: "Lunch",
    start: new Date("2013/4/4 12:00"),
    startTimezone: "Europe/Sofia",
    end: new Date("2013/4/4 13:00")
});
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(event.startTimezone); // outputs "Europe/Sofia"
</script>
In this article