Nadia
Nadia

Reputation: 209

Display three months in Full Calendar

Is there any way to display 3 consecutive months in the Fuill Calendar. I have to work with the month view and I searched a lot but I haven't found any solution. this what I want to do. More details : I'm using Javascript I tryed this but it didn't do what I want exactly.

var calendar = $('#calendar1').fullCalendar({
            header: {
                left: 'prev,next today',
                right: 'title'
            }
        });
        var calendar = $('#calendar2').fullCalendar({
            header: {
                left: 'prev,next today',
                right: 'title'
            }
        });
        var calendar = $('#calendar3').fullCalendar({
            header: {
                left: 'prev,next today',
                right: 'title'
            }
        });

enter image description here

Upvotes: 1

Views: 4713

Answers (1)

Nadia
Nadia

Reputation: 209

I Just Found the solution for this

fcViews.month = {
'class': MonthView,
duration: { months: 3 },
defaults: {
    fixedWeekCount: false
}};

Upvotes: 5

Related Questions