rasool shaik

rasool shaik

  • NA
  • 49
  • 1.7k

List buttton not dispaly in the FullCalendar angular 8.

Aug 12 2020 4:19 AM
please, anyone, help
 
this my code:
  1. import listPlugin from '@fullcalendar/list';  
  2. this.model = [];  
  3. const todayDate = new Date();  
  4. const todayDateStr = todayDate.getFullYear() + '-'  
  5. + ('0' + (todayDate.getMonth() + 1)).slice(-2) + '-'  
  6. + ('0' + (todayDate.getDate())).slice(-2);  
  7. this.fullcalendarOptions = {  
  8. plugins: [dayGridPlugin, timeGridPlugin, interactionPlugin,listPlugin ],  
  9. defaultDate: todayDateStr,  
  10. header: {  
  11. left: 'prev,next',  
  12. center: 'title',  
  13. right: 'dayGridMonth,listWeek',  
  14. },  
  15. };  

Answers (8)