简体   繁体   中英

fullcalendar angular5 cannot select half of the component

例子1 范例#2

Using fullcalendar through ap-angular2-fullcalendar

I can only select hours between 12AM up until 3PM. It varies, and depended on if the Console is open or not, so I have more or less space in my screen. The most I can click on is 3PM if I scrolled to the bottom of the screen and Console not open.

When I drag an existing event forward to the hours I want it in - 3PM and up - it doesn't let me as it appears it is not a part of the calendar - although visually it is.

When I drag an existing event backward - so a part of it is on the previous day - it lets me just fine - although it is a part of those 'forbidden hours' or w/e.

It's really weird. Anyone knows what is it about?

Found a similar problem. It is an issue with Fullcalendar and not me.

Temporary solution provided there: https://github.com/fullcalendar/fullcalendar/issues/3615#issuecomment-339333385

.fc-scroller { overflow-x: visible !Important; }

Added it to my styles.css right below the import:

@import '~fullcalendar/dist/fullcalendar.min.css';

.fc-scroller {
  overflow-x: visible !Important;
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM