How can i get notified when the user click on \'next\' (arrow) ? I\'m using the calendar in month view and I want to load the next month data on demand. Also, do smbdy has a
Your way of approaching is wrong. You may need to write an API which returns the list of calendar objects in JSON, and use the following options.
$('#calendar').fullCalendar({
events: '/myfeed.php'
});
Then, fullcalendar will automatically call /myfeed.php whenever it needs. e.g. If a user clicks 'prev' or 'next' month button.
Here's the example URL fullcalendar will generate :
/myfeed.php?start=1262332800&end=1265011200&_=1263178646
For more information, please visit the following URL. http://arshaw.com/fullcalendar/docs/event_data/events_json_feed/