I would like to set the initial month to an arbitrary month when I call the function to display the calendar.

Say for example the user selects a date last june (June 2011) somewhere else and I want fullcalendar to show up with a month display of April before (April 2010). And yes, this is just to make a case, not to make sense ;-) )

I tried to call 'gotodate' before I then subsequently call the display function but this doesn't seem to work

$('#calendar').fullCalendar( 'gotoDate', currentdate);
$('#calendar').fullCalendar({
               header: {    left: 'prevYear,prev,today,next,nextYear',                      center: 'title',                                    right: 'month,basicWeek,basicDay' etc...

Could someone eventually please provide an example how to do this properly?

Many thanks

Stefan

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

You have it backwards. Display the calendar first, and then call gotoDate.

$('#calendar').fullCalendar({
  // Options
});

$('#calendar').fullCalendar('gotoDate', currentDate);
link|improve this answer
hmmmm...it's working, but the logic is strange, wouldn't you agree. So I tell the calendar to go somewhere, and then I tell him: "wait a second, that's not what I meant. What I REALLY meant is THIS...Anyway, thanks a bunch for your fast asnwer, it's working fine! Stefan – Stefan Nov 17 '11 at 21:58
That code doesn't just display the fullCalendar, it also initializes it. So think of it this way, your way was telling a calendar that didn't yet exist to display a date. This way it's saying create the calendar, then show a date. Also, if this solved your problem, don't forget to mark it as an accepted answer by clicking on the checkbox. Thanks. – Brandon Nov 17 '11 at 22:00
Thanks Brandon! – Stefan Nov 17 '11 at 22:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.