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 in day of the week.
For example John Doe Monday from 15:00 to 18:00, Martin Friday from 9:00 to 15:00, and so...
I just try to create my personal view as "settimana" like this:
$('#calendar').fullCalendar({
header: {
left:'',
center:'',
right:'',
},
editable: true,
views: {
settimana:{
type:'agendaWeek',
duration: { days: 7 },
title: 'Apertura',
}
},
defaultView: 'settimana',
});
How can I do it? What I must set in option when calling jQuery fullCalendar plugin?
Thank you very much.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…