在Fullcalender的版本2中,我需要dayRender回调,我想更改禁用日的颜色。

该回调仅适用于month,basicWeek和basicDay视图。但是我需要将此回调用于议程week和议程。

您对dayRender有其他选择或答案吗?

我尝试这样:

        dayRender: function(date, cell){
            if (date > maxDate){
                $(cell).addClass('disabled');
                console.log("ok");
            }
        }


和我的看法

       views: {
          agendaSix: {
              type: 'agenda',
              duration: { days: 6 },
              buttonText: '5 day',
          },
          agendaFive: {
              type: 'agenda',
              duration: { days: 5 },
              buttonText: '4 day'
          },
          agendaFour: {
              type: 'agenda',
              duration: { days: 4 },
              buttonText: '3 day'
          },
      },

      defaultView: 'agendaWeek'


万分感谢 !

最佳答案

对于scheduleWeek,仅当allDaySlot设置为true时,才触发dayRender调用。如果将allDaySlot设置为false,则不会调用dayRender。

关于javascript - Fullcalendar v2 dayRender用于议程 View 和议程周,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34593145/

10-09 12:42