I\'m trying to use full calendar to load events from a json source. The json is from a URL like a feed, \"mysite.com/getEvents\" (which returns a json event object). Right n
You should try forming the JSON so it has all the required fields. For example, on my project the following is sufficient:
I think the ID only has to be unique for that instance of the JSON feed, so you could just have a counter incrementing in the server-side script that generates the JSON.
Example output from the JSON script:
[
"0",
{
"allDay": "",
"title": "Test event",
"id": "821",
"end": "2011-06-06 14:00:00",
"start": "2011-06-06 06:00:00"
},
"1",
{
"allDay": "",
"title": "Test event 2",
"id": "822",
"end": "2011-06-10 21:00:00",
"start": "2011-06-10 16:00:00"
}
]