How to make past date unselectable in fullcalendar?

前端 未结 15 1281
暗喜
暗喜 2020-12-08 07:46

Problem is, how to disable selectable on PAST DATES in fullcalendar\'s month/week view.

I want to user not allowed to click/select the on past dates.

15条回答
  •  一整个雨季
    2020-12-08 08:12

    below is the solution i'm using now:

            select: function(start, end, jsEvent, view) {
                if (moment().diff(start, 'days') > 0) {
                    $('#calendar').fullCalendar('unselect');
                    // or display some sort of alert
                    return false;
                }
    

提交回复
热议问题