PerfectScrollbar不是FullCalendar上的功能

时间:2019-01-27 11:03:06

标签: javascript jquery fullcalendar perfect-scrollbar

我正在尝试在PerfectScrollbar上应用FullCalendar,但很遗憾:

  

PerfectScrollbar不是函数

这很奇怪,因为在我的应用程序的其他地方,PerfectScrollbar已成功应用。

这是我对FullCalendar的实现:

 $calendar = $('#fullCalendar');

 $calendar.fullCalendar({
  viewRender: function(view, element) {
    // We make sure that we activate the perfect scrollbar when the view isn't on Month
    if (view.name != 'month') {
      $(element).find('.fc-scroller').perfectScrollbar();
    }
  }, ...

我做错了什么?

更新:

这不会显示错误:

var scroller = $(element).find('.fc-scroller')[0];
var ps = new PerfectScrollbar(scroller, {
            wheelSpeed: 2,
            wheelPropagation: true,
            minScrollbarLength: 20,
            suppressScrollX: true
          });

但不显示PerfectScrollBar

2 个答案:

答案 0 :(得分:1)

这个问题有些陈旧(9mo),但至少与其他问题仍然相关。

问题是1,您定位了错误的“ .fc-scroller”(确实有多个),2,perfect-scrollbar的父级必须具有“ position:relative”。

FullCalendar v4:

import { Calendar } from '@fullcalendar/core';
import PerfectScrollbar from 'perfect-scrollbar'

const calendar = new Calendar(calendarEl, {
  viewSkeletonRender(){
    const el = document.querySelector('.fc-body .fc-time-area .fc-scroller')
     if (el) {
      el.style.overflow = 'hidden'
      el.style.position = 'relative'
      new PerfectScrollbar(el)
     }
  }
})

对于v3,使用相同的代码段,但在'viewRender'方法中使用了该代码段。就像@sfarzoso一样。

答案 1 :(得分:0)

不那么优雅,但正确考虑了 v5 中的窗口大小调整。

    // Calendar attribute reset for perfectScrollbar
    const resetCalendarSizing = () => {
      const timeGrid = (<HTMLElement>document.querySelector('.fc-view-harness .fc-timegrid-body'));
      const dayGrid = (<HTMLElement>document.querySelector('.fc-view-harness .fc-daygrid-body-natural'));

      setTimeout(() => {
        if (timeGrid && dayGrid) {
          timeGrid.setAttribute('style', 'width: 100% !important');
          timeGrid.firstElementChild?.firstElementChild?.setAttribute('style', 'width: 100% !important');
          timeGrid.lastElementChild?.firstElementChild?.setAttribute('style', 'width: 100% !important');

          dayGrid.setAttribute('style', 'width: 100% !important');
          dayGrid.firstElementChild?.setAttribute('style', 'width: 100% !important');
        }
      }, 10);
    };

const calendar =  new Calendar(calendarEl.value!, {
        viewDidMount: () => {
          document.querySelectorAll('.fc-view-harness .fc-scroller')
            .forEach((element) => {
              if (element) {
                (<HTMLElement>element).style.overflow = 'hidden';
                const perfectScrollbar = new PerfectScrollbar(element);
              }
            });

          resetCalendarSizing();
        },
        windowResize: () => {
          resetCalendarSizing();
        },
});