fullcalendar.js选择约束

时间:2015-11-01 22:29:00

标签: jquery fullcalendar

我正在尝试在fullcalendar.js中使用eventConstraint功能,它与已创建的事件完美配合。 我的问题是你如何限制新事件?

我正在考虑将'selectable'设为false并使用eventMouseover和eventMouseout分别在悬停约束背景事件时将其设置为true / false。但问题是这两个回调不是在后台事件上触发的。

1 个答案:

答案 0 :(得分:0)

您应该使用select contraint方法。它的工作方式与' eventContraint'完全相同。你已经在使用:

{
    start: '10:00', // a start time (10am in this example)
    end: '18:00', // an end time (6pm in this example)

    dow: [ 1, 2, 3, 4 ]
    // days of week. an array of zero-based day of week integers (0=Sunday)
    // (Monday-Thursday in this example)
}

请记住,正如文档所说:

  

仅在激活可选选项时适用。

这将禁止用户使用漂亮的不允许游标在约束中创建新事件。