How to make past date unselectable in fullcalendar?

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

    I have tried this approach, works well.

    $('#calendar').fullCalendar({
       defaultView: 'month',
       selectable: true,
       selectAllow: function(select) {
          return moment().diff(select.start) <= 0
       }
    })
    

    Enjoy!

提交回复
热议问题