不允许通过FullCalendar选择过去的日期

时间:2015-06-26 11:32:54

标签: jquery fullcalendar

这个问题不久前在这里被问过: How to make past date unselectable in fullcalendar?

但FullCalendar现在使用Moment而不是它自己的日期格式输入完全不同的版本。

如何实现一个在今天之前不允许选择日期的可选日历?

编辑:钉住它!

select: function(start, end, allDay) {
            var selectionStart = moment(start); 
            var today = moment(); // passing moment nothing defaults to today

            if (selectionStart < today) { 
                $('#YourCalendar').fullCalendar('unselect');
            }
            else {
             // do stuff
            }
        }

0 个答案:

没有答案