最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - In fullCalendar change slotDuration without page reloading - Stack Overflow

programmeradmin1浏览0评论

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 badges
Add a ment  | 

2 Answers 2

Reset to default 7

Now, 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);
发布评论

评论列表(0)

  1. 暂无评论