Issue 1274: Auto add previous\next buttons by start\end date
Status:  Duplicate
Merged:  issue 158
Owner: ----
Closed:  Aug 2013
Reported by pigi...@gmail.com, Feb 5, 2012
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 

Aug 15, 2013
Project Member #1 adamrs...@gmail.com
Seems like you want to restrict the use to browsing a specific date range? merging into an issue that requests that already...
Status: Duplicate
Mergedinto: 158