我正在使用fullcalendar v2.7.1和jQuery datepicker。从datepicker中选择一个月/年后,如何将fullcalendar推进到从datepicker中选择的值?
旧版本的fullcalendar v1.5.4用于使用以下代码。
的jQuery
('#datepicker').datepicker({
onChangeMonthYear: function(month, year, inst) {
$('#calendar').fullCalendar('gotoDate',month, year, inst);
},
});