jquery fullcalendar send custom parameter and refresh calendar with JSON
- by geo
im trying to use the jquery fullcalendar. The event data comes from the server using JSON.
My page has a dropdown element and the fullcalendar div.
What i need is to refresh the calendar each time the user changes the dropdown. The selected value of the dropdown should be posted to the server in order to fetch the new event data
Here is my code
$(document).ready(function() {
$('#calendar').fullCalendar({
events: {
url : '/myfeed',
data : {personId : $('#personDropDown').val() }
}
});
$('#personDropDown').change(function(){
$('#calendar').fullCalendar('refetchEvents');
});
});
The code above however doesnt work.
Any help?