I would like to integrate the jQuery fullcalendar into my PHP website, but I don\'t know how to handle the event and how to use the JSON data from MySQL.
Any advice wou
I think your having the same problem as I'm having. I've search the web trying to find out how to setup the DateTime so that the fullCalendar javascript will interpret it correctly. (This page had some good clues to that: http://blog.stevenlevithan.com/archives/date-time-format).
I posted this on the fullCalendar issues page hoping that the creator or anyone else would shed some light on the subject.
====================ISSUE DESCRIPTION====================
What steps will reproduce the problem?
[{"id":2, "title":"title of 2","start":"2009-11-17T10:00:00" ,"end":"2009-11-17T11:01:00","url":"?eventID=2"}]
What is the expected output? What do you see instead?
What version of the product are you using? On what operating system?
Please provide any additional information below.
I am using an aspx page for fetching the calendar events. My guess is that
there is something wrong with the format of the JavaScript DateTime
object
that I'm returning in the JSON
and that this is causing the fullcalendar
to
interpret the events as fullDayEvents
. The format that I'm sending in the
JSON
is: 2009-11-17T11:01:00
.