Issue 2211: Specific time zones don'tt work, but 'local' does.
Status:  Done
Owner: ----
Closed:  Jul 2014
Reported by Patrik.L...@gmail.com, Jul 18, 2014
Specific time zones, in this case 'Europe/Stockholm', don't make timezone changes to the event times, but using 'local' does. I am located in this time zone and my computer is set to this time zone.
In your example:
http://arshaw.com/js/fullcalendar-2.0.2/demos/timezones.html
it works. The only difference in the code that I can see is that I use "eventSources" instead of "events" to get the events.

JSFiddle: http://jsfiddle.net/KenQ/f6xjT/12/
local.png
102 KB   View   Download
stockholm.png
97.2 KB   View   Download
Jul 23, 2014
Project Member #1 adamrs...@gmail.com
Your events' date formats are sort of weird. They are like "2014-07-17Z10:30". They have a 'Z' in them, which denotes that it is in UTC timezone. The dates are being coerced into the local timezone, that's why they change. You probably mean to have "2014-07-17T10:30:00"
Status: Done
Jul 28, 2014
#2 Patrik.L...@gmail.com
Changing 'Z' to 'T' solved my problem, thank you! I should have seen it myself.
Keep up the good work :-)