在一行中显示多个项目的整个月的可用性日历

时间:2017-04-26 10:47:23

标签: javascript calendar fullcalendar fullcalendar-scheduler

我想要做的是以下内容: Calendar with availability for multiple items

如果我可以使用fullcalendar或fullcalendar-scheduler但显示每日可用性的房间(或项目),而不是每小时,那将是很好的。

我尝试扩展fullcalendar-scheduler,但无法显示数天而不是数小时。

这是fullcalendar-scheduler

你能推荐一个javascript库或类似的东西,我可以使用(甚至扩展)吗?

谢谢!

1 个答案:

答案 0 :(得分:1)

使用内置的“timelineMonth”视图,您可以获得功能相同的内容,并且在视觉上与截图非常相似:

$('#calendar').fullCalendar({
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'timelineMonth'
        },
        defaultView: "timelineMonth",
//etc

请参阅此处的示例https://fullcalendar.io/js/fullcalendar-scheduler-1.6.2/demos/scale.html(点击“月”标签)。另请参见https://fullcalendar.io/docs/views/Available_Views/,其中记录了此视图的存在。