Display 2 weeks in jQuery FullCalendar

The best solution is it to implement your custom view.

Put in a new JS your own defined view :

$.fullCalendar.views.twoweeks = TwoWeeksView;
function TwoWeeksView(element, calendar) {
    // copy code from fullcalendar.js line 1960
}

Leave a Comment