如何在完整日历中向事件对象添加新的非标准字段

时间:2012-08-09 22:11:49

标签: ruby-on-rails-3 fullcalendar

如何向完整日历添加非标准事件字段?

我已经阅读了有关此问题的其他问题 - 他们的回答只是说documentation不完整的问题

2 个答案:

答案 0 :(得分:1)

(简单概念) - 如果您已经在数据库中创建了一个字段,那么执行此操作的一种方法是将该字段放在rails页面的数组中。在JS方面,使用eventRender并将其附加到您想要的任何元素。

答案 1 :(得分:1)

我刚刚在其他问题上看过这个,但我没有测试。

添加此回调

eventRender: function( event, element, view ) 
    { 
        //redo the title to include the description
        element.find(".fc-event-title").html(event.title + ": <span>" + event.description + "</span>");
    },

jQuery Calendar : how to add clickable events on particular dates?