To reproduce follow these steps:
- Set phone on Amsterdam/Berlin/Rome timezone.
- Create calendar event:
evt1 = calendar.createEvent({
"summary": "Test Summary",
"start": new Date("Mar 21, 2013, 15:00"),
"end": new Date("Mar 21, 2013, 17:00"),
"description": "Test Description",
});
On device Calendar this event starts at 16:00 and ends at 18:00. WRONG!
- Create another calendar event:
evt2 = calendar.createEvent({
"summary": "Test Summary",
"start": new Date("Apr 01, 2013, 15:00"),
"end": new Date("Apr 01, 2013, 17:00"),
"description": "Test Description",
});
On device Calendar this second event starts correctly at 15:00. CORRECT!
On March 31st there will be DST change in Europe, while in the US it has already been changed on March 10th. Is this related to this bug?
What is wrong with timezone/DTS handling?
To reproduce follow these steps:
evt1 = calendar.createEvent({
"summary": "Test Summary",
"start": new Date("Mar 21, 2013, 15:00"),
"end": new Date("Mar 21, 2013, 17:00"),
"description": "Test Description",
});
On device Calendar this event starts at 16:00 and ends at 18:00. WRONG!
evt2 = calendar.createEvent({
"summary": "Test Summary",
"start": new Date("Apr 01, 2013, 15:00"),
"end": new Date("Apr 01, 2013, 17:00"),
"description": "Test Description",
});
On device Calendar this second event starts correctly at 15:00. CORRECT!
On March 31st there will be DST change in Europe, while in the US it has already been changed on March 10th. Is this related to this bug?
What is wrong with timezone/DTS handling?