FullCalendar:调整事件大小在月视图中不起作用

问题描述 投票:0回答:1

我正在开发 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();
    }
  }

我怎样才能做到这一点?

亲切的问候

angular fullcalendar
1个回答
0
投票

我发现,如果有人遇到类似的困难,为每个事件设置 allDay true 可以解决此处讨论的问题。 FullCalendar:我无法在月视图中调整事件大小

© www.soinside.com 2019 - 2024. All rights reserved.