Answers for "fullcalendar angular add events"

0

fullcalendar angular add events

calendarOptions = {
    height: '100%',
    fixedWeekCount: false,
    defaultDate: moment().format('YYYY-MM-DD'),
    allDaySlot: false,
    displayEventTime: true,
    editable: true,
    eventLimit: true,
    lazyFetching: false,
    nowIndicator: true,
    refetchResourcesOnNavigate: true,
    events: [],
    plugin: [dayGridPlugin, interactionPlugin],
    dateClick: this.getAppointmentsForSpecificDate.bind(this), // this line
  };

  etAppointmentsForSpecificDate(arg) {
    console.log(args)
  }
Posted by: Guest on January-27-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language