There is no direct way to fullcalendar to show two months. for your requirement you need to combine fullcalnder with darepicker, since one small datepicker is above the fullcaleder and one click of the datepicker call goto methode fullcalendar button to go to the given date.
$(document).ready(function() { $("#datepicker" ).datepicker({ numberOfMonths: 2, showButtonPanel: false, minDate:0, onSelect: function(dateText, inst) { selected_date = dateText; $('#calendar').fullCalendar('gotoDate',new Date(Date.parse(selected_date))); } }); });
Ganesh bora
source share