728x90
반응형
fullCalendar 개요 인터페이스를 사용하고 있습니다. 사용 : 서버의 Flask-python 및 클라이언트 측의 HTML jinja2 js
지금은 호버에서 툴팁을 만들거나 tooltip.js를 사용하여 클릭하려고합니다.
popper.js 색인으로 이동시키는 버그가 있습니다.
내 기본 js는 다음과 같습니다.
document.addEventListener('DOMContentLoaded', function() {
var calendarEl = document.getElementById('calendar');
var calendar = new FullCalendar.Calendar(calendarEl, {
plugins: ['dayGrid'],
defaultView: 'dayGridMonth',
eventRender: function(info) {
var tooltip = new Tooltip(info.el, {
title: "info.event.extendedProps.description",
placement: 'top',
trigger: 'hover',
container: 'body'
});
},
events: {{hour}}
});
calendar.render();
});
내가 본 것에서 le eventRender가 호출됩니다. 툴팁 div가 마우스 오버되어 있으면이 오류가 발생합니다.
Uncaught TypeError: a is not a constructor
at g.value (index.js:246)
at index.js:381
이것을 참조합니다 :
this.popperInstance = new Popper(
reference,
tooltipNode,
this._popperOptions
);
728x90
반응형
'JAVA HTML JAVASCRIPT > 소오스' 카테고리의 다른 글
padStart / padEnd (0) | 2021.04.17 |
---|---|
_.filter( ) 함수 (0) | 2021.04.17 |
[JavaScript] 자바스크립트 concat 메서드 이해하기 (0) | 2021.04.16 |
[JavaScript] 자바스크립트 forEach 메서드 이해하기 (0) | 2021.04.16 |
[JavaScript] Alert(경고창), Prompt(입력창), Confirm(선택창) (0) | 2021.04.16 |