Using fullcalendar I need without page reloading to change slotDuration
parameter depending on other conditions:
I do in one case
$('#calendar').fullCalendar('option', 'slotDuration', '00:15:00');
and in other case
$('#calendar').fullCalendar('option', 'slotDuration', '00:30:00');
But looks like it does not work, as I always see fullcalendar with slotDuration=30
(2 slots) minutes, as it was called when initialized.
If there is a way for this?
Using fullcalendar I need without page reloading to change slotDuration
parameter depending on other conditions:
I do in one case
$('#calendar').fullCalendar('option', 'slotDuration', '00:15:00');
and in other case
$('#calendar').fullCalendar('option', 'slotDuration', '00:30:00');
But looks like it does not work, as I always see fullcalendar with slotDuration=30
(2 slots) minutes, as it was called when initialized.
If there is a way for this?
Share Improve this question edited Oct 16, 2016 at 8:20 Tasos K. 8,0977 gold badges42 silver badges65 bronze badges asked Nov 12, 2014 at 8:16 user2339232user2339232 7573 gold badges11 silver badges22 bronze badges2 Answers
Reset to default 7Now, you can set dynamically
without destorying the calendar
.
$('#cc-calendar')
.fullCalendar('option','slotDuration','00:10:00');
Here, we work with the Dynamically get/set Options
feature of fullcalendar
.
For more info, check out : https://fullcalendar.io/docs/utilities/dynamic_options/
Good Luck.
As you can see here, fullCalendar only allow change some properties after initialization. You don't need to reload the page, but destroy and init is required.
So:
var calendarOptions = {
defaultView: 'month',
editable: true,
slotDuration: '00:45:00',
(...)
}
$('#calendar').fullCalendar(calendarOptions); //Init
//And when you need to update any property
calendarOptions.slotDuration = '00:15:00';
$('#calendar').fullCalendar('destroy');
$('#calendar').fullCalendar(calendarOptions);