如何在JQuery Fullcalendar中使用slotMinutes

时间:2010-12-23 16:33:50

标签: jquery fullcalendar

当我在fullcalendar的日视图中调整事件大小时,它允许我使用30分钟时隙的差异来调整它的大小。我想将时间段从30减少到10或5.我该怎么做?

2 个答案:

答案 0 :(得分:6)

看起来您应该只能在初始化日历时在选项中指定参数slotMinutes

$('#calendar').fullCalendar({
    header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,agendaWeek,agendaDay'
    },
    slotMinutes: 5,
    // .. etc
});

但是,如 this example 所示(点击'日'视图,你会看到一些事件),日视图现在左边有5分钟的比例。不确定是否有任何解决方法(即,在比例上显示30分钟的间隔,但允许以5分钟的间隔拖动事件)。

希望有所帮助!

答案 1 :(得分:0)

对于Fullcalendar V2,请使用slotDuration:http://fullcalendar.io/docs/agenda/slotDuration/