You can do it easily on your own, here is an example that works.
I did this by changing fullcalendar.js. Note that in many examples, you can change the year, month, and day using the prev / next buttons. Each of them has its own rendering function, so you will need to consider it if you want it for each of them. My example can be easily adapted.
, "". , .
views.month = function(element, options, viewName) {
return new Grid(element, options, {
render: function(date, delta) {
if (delta == -1) {
var curr_date = new Date();
var curr_m = curr_date.getMonth();
if (date.getMonth() < curr_m) {
return false;
} else if ((date.getMonth() - 1) < curr_m) {
$(".fc-button-prev span").css("background", "red");
} else {
$(".fc-button-prev span").css("background", "#E8E8E8");
}
} else {
$(".fc-button-prev span").css("background", "#E8E8E8");
}
: 944 fullcalendar.js
Firefox 3.6.8, basic-view.html default.html, FullCalendar. :
<script type='text/javascript' src='../fullcalendar.min.js'></script>
<script type='text/javascript' src='../fullcalendar.js'></script>