How to make past date unselectable in fullcalendar?

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

    You can use this:

    var start_date= $.fullCalendar.formatDate(start,'YYYY-MM-DD');
    
    var today_date = moment().format('YYYY-MM-DD');
    
    if(check < today)
    {
        alert("Back date event not allowed ");
        $('#calendar').fullCalendar('unselect');
        return false
    }
    

提交回复
热议问题