Is there a way to make the day of the month value clickable in the month view like in Google Calendar?

I would like it so when a user clicks on a day in the month(just the day number, not the whole block), the fullCalendar would switch to the day view of that particular day.

Thanks!

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Use the dayClick event, the changeView method, and the goToDate method.

Something like this (not tested):

$('#calendar').fullCalendar({
    dayClick: function(date, allDay, jsEvent, view) {

        if (allDay) {
            // Clicked on the entire day
            $('#calendar')
                .fullCalendar('changeView', 'agendaDay'/* or 'basicDay' */)
                .fullCalendar('gotoDate',
                    date.getFullYear(), date.getMonth(), date.getDate());
        }
    }
});

Edit re: comments

You can check the event.target within the callback:

$('#calendar').fullCalendar({
    dayClick: function(date, allDay, jsEvent, view) {

        if (allDay) {
            // Clicked on the entire day

            if ($(jsEvent.target).is('div.fc-day-number') {
                // Clicked on the day number

                $('#calendar')
                    .fullCalendar('changeView', 'agendaDay'/* or 'basicDay' */)
                    .fullCalendar('gotoDate',
                        date.getFullYear(), date.getMonth(), date.getDate());
            }
        }
    }
});
link|improve this answer
2  
won't this switch the view if the user clicks anywhere on the day block, instead of just the day number? – Brandon Dec 7 '11 at 17:02
1  
What Brandon said...thanks for the code, it actually does work. But I was wondering if there was a way to make the day number clickable...like Google calendar works. -Thanks – 999cm999 Dec 7 '11 at 17:56
1  
@Brandon you're right, see my edit. – Matt Ball Dec 7 '11 at 18:53
1  
awesome...worked perfectly. Thanks man! I added a css directive, 'cursor: pointer' to 'div.fc-day-number' so the mouse pointer changes to the little hand when you hover over the month number. – 999cm999 Dec 7 '11 at 19:19
feedback

Your Answer

 
or
required, but never shown

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