I have my calendar pulling events nicely from my RESTful api using the methods described here: http://arshaw.com/fullcalendar/docs/event_data/events_function/
So everything works fine when clicking the "next" and "previous" buttons to navigate between months. But how can I get events to reload for the current view using javascript?
For example, in my app the are actions that have side effects of creating Events in my back-end. And when those actions are performed, I would like the events to appear on the calendar via a calendar event re-load.
Currently, if I want my new event to show up, I have to go back and forth a month.