My application only deals in full day events, so I’d like to be able to only display the allDay section for agendaViews. See screen shot below. I want to hide the areas highlighted in red.
Calendar widget: http://arshaw.com/fullcalendar/
Screens:
Advertisement
Answer
You overcomplicated it. Check the basicViews, http://arshaw.com/js/fullcalendar-1.6.4/demos/basic-views.html and have your events only with start date
JavaScript
x
5
1
{
2
title: 'All Day Event',
3
start: new Date(y, m, d)
4
}
5