1
I have a system that uses the fullcalendar , depending on what the user is currently using it prefers a type of visualization, for example month, depending on what he is doing he prefers another type of visualization, week for example, and this he does by clicking the buttons that fullcalendar creates. What generates a lot of bother is that the user has to go through several calendars and always have to keep clicking on the buttons, there is some way to take this choice he made and leave as default for the next times he access the system. As soon as it accesses I already leave marked as default the week option, so I have something like this today:
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultDate: '2015-12-23',
defaultView: 'agendaWeek'
});