JQuery:FullCalendar Plugin: Events are not shown in week view and day view but are shown in month view

前端 未结 3 1872
Happy的楠姐
Happy的楠姐 2021-01-18 21:43

I\'ve the following code to fetch events:

$(\'#calendar\').fullCalendar({
theme: true,
slotMinutes: 10,
header: {
left: \'prev,next today\',
center: \'title\',
right:          


        
3条回答
  •  长情又很酷
    2021-01-18 22:18

    Make sure that you DO NOT have any class on table that has overflow set to hidden. I made this mistake and wasted time on it.

    table td { overflow: hidden; //Remove this to fix the issue. }

提交回复
热议问题