Issue 319: About dayclick function fail...
Status:  Done
Owner: ----
Closed:  Feb 2010
Reported by raw...@gmail.com, Feb 3, 2010
Hi,

When I click a day on monthview, I want to see events as basicDay view of
that day which I clicked.

Let me be more clear: today is 03 Feb 2010. I go back to the January 2010
and want to see events in basicDay view of a specific day (19 Jan 2010)
just by clicking on 19. day.


I tried to set dayclick function for this action but I have failed because
the documentation is so hard to understand for newbies... :-]
Feb 6, 2010
Project Member #1 adamrs...@gmail.com
try something like this:

$('#calendar').fullCalendar({
   dayClick: function(date) {
      $('#calendar')
         .fullCalendar('gotoDate', date)
         .fullCalendar('changeView', 'basicDay');
   }
});
Status: Done