0

fullcalendar在 ruby​​ on rails 上使用它,它工作得非常好。我正在尝试更改backgound_color事件的属性,但我看不到如何获取它。我能够更改边框颜色。

我的 JSON 看起来像:

[

    {
        "_routes": null,
        "title": "this should be red",
        "color": "#2308d1",
        "url": "/events/59",
        "start": "2013-06-18T00:00:00-05:00",
        "end": "2013-06-18T22:59:59-05:00",
        "allDay": false,
        "event_id": 59,
        "background_color": "red"
    },
] 

我想与社区分享一些不错的东西,来源在这里 https://github.com/mzararagoza/rails-fullcalendar-icecube

4

2 回答 2

2

看起来您需要使用 backgroundColor 而不是 background_color。

https://github.com/arshaw/fullcalendar/blob/1009caf3b792ad5958d0660ebcfee49fad6f7026/src/util.js

于 2013-06-19T00:52:54.010 回答
2

您可以为每种类型的事件定义一个类名,如下所示:

[            
   url: ajaxcallURL(_url,"6"),
   type: 'POST',                                
  //error: function() { alert('something broke with courses...'); },
   data:{                                                                   
   'func':func,
   'year':y
     },
   cache: false,              
   color: '#FF931E', //This is the color for the events
   textColor: 'white'
   className: 'myCssClassName' //in the Css you can use the class to set the background color for the events, i think this overrides color property.                                    
]

还是您在考虑表格单元格的颜色?因为这是完全不同的东西......

于 2013-06-19T19:11:56.583 回答