调整大小期间的完整日历显示事件长度

时间:2015-04-12 20:57:01

标签: fullcalendar

我正在使用Adam Shaw的FullCalendar(http://fullcalendar.io)。

当用户调整日历中的事件大小时,我正在寻找一种向鼠标指针显示工具提示的方法。我希望它显示实际的事件长度,并且应该在用户拖动时更新。

在查看文档时,我似乎找不到任何方法。

有人对此有任何建议吗?

谢谢,西蒙

1 个答案:

答案 0 :(得分:0)

您可以使用qtip plugin,然后像documentation example for event render

一样使用它

此外,要获得长度,您可以使用moment.js difference method执行此操作,因为您可以在this plunker办理登机手续。

所以最后你得到了类似的东西:

eventRender: function(event, element) {
        element.qtip({
            content: event.end.diff(event.start, 'minutes')
        });
    }