views:

60

answers:

1

I have setup a google calendar using the gcal.js from fullcalendar which displays a month view easilty enough.

What I really want to do is display this calendar in a single day or agenda view instead of the default month view but I cannot for the life of me find any reference to whether this is possible.

A: 

You need to use the defaultView option and set the value to 'basicDay' or 'agendaDay' as listed in Available Views.

Code should look like:
$('#calendar').fullCalendar({
header: { left: 'prev, next today', center: 'title', right: 'month, basicWeek, basicDay' }, defaultView: 'basicDay'
});

Jake1164
Awesome Jake, thanks
silverbow
Glad to be of assistance :)
Jake1164