I have a problem with some timezone settings. I would like to achieve:
- First day of week should always be Monday (independently from timezone a user work in)
- Events should always have the same time (should not be shiffted with timezone change)
I've tried:
firstDay: 1
andtimeZone: 'UTC'
In this case event times stays the same but if I change timezone to USA, the firstday changes to sunday. If I use europe timezone first day is Monday. Event times stays the same.firstDay: 1
andtimeZone: 'local'
In this case Mondays stays as first day of the week in all timezones but event times shifft (for Europe +1 hour)
I cannot find any other setting option or solution in documentation to achieve this. Can you suggest a solution?