我正在开发 Angular 10 项目。我正在使用 fullcalendar.io
当我想调整事件大小,但它什么也没做时。我已经尝试过:https://fullcalendar.io/docs/eventResize。它可以在演示应用程序中使用:https://fullcalendar.io/#demos
calendarOptions: CalendarOptions = {
headerToolbar: {
left: 'prev,next today',
center: 'title',
right: 'dayGridMonth'
},
initialView: 'dayGridMonth',
dateClick: this.handleDateClick.bind(this), // bind is important!
weekends: false,
events: this.convertBookingProjectsToEvents(),
editable: true,
selectable: true,
};
eventResize(info) {
alert(info.event.title + ' end is now ' + info.event.end.toISOString());
if (!confirm('is this okay?')) {
info.revert();
}
}
我怎样才能做到这一点?
亲切的问候
我发现,如果有人遇到类似的困难,为每个事件设置 allDay true 可以解决此处讨论的问题。 FullCalendar:我无法在月视图中调整事件大小