| Issue 319: | About dayclick function fail... | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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... :-] |
|
| ► Sign in to add a comment |
try something like this: $('#calendar').fullCalendar({ dayClick: function(date) { $('#calendar') .fullCalendar('gotoDate', date) .fullCalendar('changeView', 'basicDay'); } });