How to upgrade fullcalendar version 4.4 in angular js

谁说我不能喝 提交于 2020-06-09 05:27:27

问题


Actually, I want upgrade fullcalendar version 4.4 in my angularjs web application. already have fullcalendar version 2.9 it very slow in my project that's i want to upgrade fullcalendar version 4.4 so please help how to upgrade this and i have tried but i'm not able to get please check my code below.

@ Note : All the js and css code i have included footer.php & header.php

Html code:

<div id='calendar44'></div>

ctrl.ordercal.js : this js all the code blow init function.

document.addEventListener('DOMContentLoaded', function() {
    var calendarEl = angular.element(document.querySelector('#calendar44'));
     lg(calendarEl);    
     alert(calendarEl);
     var calendarout = new FullCalendar.Calendar(calendarEl, { plugins: [ 'dayGrid' ]});
     alert(calendarout);    
        calendarout.render();       
});

来源:https://stackoverflow.com/questions/61811320/how-to-upgrade-fullcalendar-version-4-4-in-angular-js

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!