Home > Net >  FullCalendar Fortnightly Event
FullCalendar Fortnightly Event

Time:03-21

I can get daily sorted by using

  daysOfWeek: [2],

I can't find anything in the documentation to make it fortnightly. Is this possible with fullcalendar?

Solution: For future people, you need the rrule js file loaded otherwise it wont work

CodePudding user response:

try rrule

    events: [
    {
      title: 'work',
      rrule: {
        freq: 'weekly',
        interval: 2,
        byweekday: [ 'mo'],
        dtstart: '2022-02-01'
      }
    }
  ]
  • Related