I'm using fullcalendar integrated with Java Wicket webapp.
I have a problem with date when timezone of webbrowser is different from timezone of server.
For example : webbrowser at Cayenne (UMT -3) and server at Paris (UMT +1).
I use "ignoreTimeZone=true" of fullcalendar because I want to keep in database calendar of timezone of the user of webbrowser.
When server initialize calendar : events sended from Paris to Cayenne
server send events like this
{"id":"53922","title":"0123456789","allDay":false,"start":"2011-01-06T09:00:00.000+01:00"}
With ignoreTimeZone=true it's ok. We have 9 o'clock in calendar.
To verify, I've tested with ignoreTimeZone=false. I have correctly event positioned at 5 o'clock (9 - 4 = 5).
Problem is coming when user click a day to create an new event !
For 12 o'clock time then JSON value sended from webbrowser is correct
allDay false date "2011-01-07T15:00:00.000Z" feedbackFor "dayClick"
But if I want to have equivalent from ignoreTimeZone I'd prefer to have 2011-01-07T12:00:00:000-03:00 format or just 2011-01-07T12:00:00.000
Is it possible to have this new possibility ?
Thanks by advance of your response.