在Fullcalendar的调度程序中添加时间指示(资源视图)

时间:2016-06-13 00:45:07

标签: fullcalendar fullcalendar-scheduler

在使用调度程序的资源视图时,用户发现很难理解悬停时间。

在$('#calendar')下面添加这个.fullCalendar(...);

  $(".fc-slats tr").each(function () {
            $(this).addClass("timerow");
        });

和CSS

.timerow:hover {background: lightblue;}

问题:当用户按下一个或上一个按钮时,日历再次呈现该表,而.hover不起作用。

1 个答案:

答案 0 :(得分:0)

在Calendar的属性中也在viewRender中添加代码解决了它。

 viewRender: function (view, element) {
            $(".fc-slats tr").each(function () {
               $(this).addClass("timerow"); });
            },

最终结果如下图所示: enter image description here

resource1 resource2