Our pure JavaScript Scheduler component


Post by wboard »

In the scheduler I add an event with the time of 06.00

When calling the sync method on the CrudManager it sends a date formatted like this:
2020-04-02T04:00:00.000Z

so 2 hours earlier.

My thoughts went to timezone settings but I'm not aware of any settings that are currently being applied.

Post by mats »

It's same time, I assume you're in CEST so all is correct.

Post by wboard »

Ahh so now I need to make my PHP code interpret the date correctly or add 2 hours to the time :)

Post by sergey.maltsev »

Hi, wboard!

You could remove Z at the end of time value to not use DST TimeZone settings on client.
Like 2020-04-02T04:00:00 or 2020-04-02 04:00:00.

We have a known bug with milliseconds parser there so until it is fixed your server have to return time without milliseconds.
https://github.com/bryntum/support/issues/501

Post Reply