Hello guys I\'m trying to show a week timetable, I must show only the name of the date, without date. Such as time table in agenda view. User must be able to select a range
This shows only Monday - Friday http://jsfiddle.net/w11xw5gt/1/
$('#calendar').fullCalendar({
header: {
left: '',
center: '',
right: '',
},
editable: true,
views: {
settimana: {
type: 'agendaWeek',
duration: {
days: 7
},
title: 'Apertura',
columnFormat: 'ffffdd', // Format the day to only show like 'Monday'
hiddenDays: [0, 6] // Hide Sunday and Saturday?
}
},
defaultView: 'settimana',
});
See Info for display options and text/time customization