Hey
I would love to see dynamic previous\next buttons option so when you setup viewStartingDate=11/11/2010 AND|OR viewEndingDate=11/11/2015 previous button will disappear on 11/2010 (month view) and next button will disappear on 11/2015 (month view) both of the buttons should work on any other dates as planned.
Example:
jQuery("#calendar").fullCalendar({......
....
....
viewDisplay : function(currentView){
var today = new Date();
var date = new Date(currentView.start);
if(today.getMonth() >= date.getMonth() &&
today.getFullYear() >= date.getFullYear()){
jQuery('.fc-button-prev').hide();
} else {
jQuery('.fc-button-prev').show();
}
}
});
//Init current month so prev button will disappear
jQuery('.fc-button-prev').hide();
Thanks,
Shaked
Mergedinto: 158