how to update an event in fullCalendar?
You aren't calling the correct fullCalendar method to render the new events.
This will not work because it is only meant to render the events the first time around:
$("#demo-calendar").fullCalendar('renderEvents', JSON);
Instead you need to remove the events on the calendar and refresh them:
$("#demo-calendar").fullCalendar('removeEvents');
$("#demo-calendar").fullCalendar('addEventSource', JSON);
Check the Fiddle: http://jsfiddle.net/shaunp/u8Ksw/29/
NOTE that there is a fullCalendar method called refetchEvents
, but that it does NOT work on an array of events such as what you have created, so you must manually take the events off and re-add the event source again.