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: /
Screens:
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:
Share Improve this question asked Apr 13, 2014 at 15:33 PercivalMcGullicuddyPercivalMcGullicuddy 5,5339 gold badges50 silver badges66 bronze badges3 Answers
Reset to default 8You can use "basicWeek" and "basicDay" view,
$('#myCaledarId').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,basicWeek,basicDay'
}
});
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
{
title: 'All Day Event',
start: new Date(y, m, d)
}
In upper version than V3 like V4, V5, "basicWeek" and "basicDay" has renamed to "dayGridWeek" and "dayGridDay" Upgrade info