How to make past date unselectable in fullcalendar?

前端 未结 15 1335
暗喜
暗喜 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:25

    I like this approach:

    select: function(start, end) {
        if(start.isBefore(moment())) {
            $('#calendar').fullCalendar('unselect');
            return false;
        }
    }
    

    It will essentially disable selection on times before "now".

    Unselect method

提交回复
热议问题