fullcalendar / fullcalendar-react

The official React Component for FullCalendar

Home Page:https://fullcalendar.io/docs/react

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

FullCalendar + React, can't made selection for day which contains allDay event

anatoly314 opened this issue · comments

Views become unselectable for date if this date have allDay event.

MVCE example here: https://codesandbox.io/s/elated-leaf-eeq5mp?file=/src/DemoApp.jsx

Without React wrapper it works fine: https://codepen.io/anatoly314/pen/ExRJRYz?editors=0010

The selection is prevented because of selectOverlap being set to false in your first example; since the event is "all day", this prevents any selection on that day.