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