Skip to content Skip to sidebar Skip to footer

DateClick Not Emitted In Fullcalendar Angular

The dateClick event is not working, I did exactly as stated in the documentation: https://fullcalendar.io/docs/angular html:

Solution 1:

To solve this problem I did the following steps:

npm install --save @fullcalendar/interaction

I added the plugin's import into the component:

import dayGridPlugin from '@fullcalendar/daygrid';
import timeGridPlugin from '@fullcalendar/timegrid';
import listPlugin from '@fullcalendar/list';
import interactionPlugin from '@fullcalendar/interaction';

  public calendarPlugins = [dayGridPlugin, 
      timeGridPlugin, listPlugin , interactionPlugin];

Post a Comment for "DateClick Not Emitted In Fullcalendar Angular"