Fullcalendar 2.0.2更改单元格背景

时间:2014-08-04 20:27:02

标签: javascript jquery css annotations fullcalendar

我目前正在寻找一个解决方案来改变fullcalendar中的单元格背景,具体取决于可用性或假期。

我找到了几个解决方案:
- github上的elhigu / fullcalendar(+)
- github上的lcrodriguez / fullcalendar(+)
但它们适用于旧版本的fullcalendar。

我也找到了这个解决方案,:
https://stackoverflow.com/a/24375088/3641008

我想知道是否有人有2.0.2版本的其他解决方案或插件。 我尝试使用最后找到的文件:https://code.google.com/p/fullcalendar/issues/detail?id=144 ..但没有成功..

我对librairy或plungin的使用很新。 谢谢你的帮助。

(+)抱歉,我不能发布2个以上的链接

编辑

我终于使用fullcalendar 1.6.4获得了fullcalendar注释(link) 但我真的需要fullcalendar2.0.2(或更高版本)。

1 个答案:

答案 0 :(得分:0)

这就是我对我的所作所为:

我设置了eventRender

eventRender: function (event, element, icon) {

    if (isHoliday) {//do your own validation                        
        element.find('.fc-event-title').append("<span class='ultra-light'> is a holiday</span>");
    }
},

当然,一旦找到element.find('.fc-event-title'),你可以附加css或做任何你想做的事。