0

私はfullcalendarRuby 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

background_color ではなく backgroundColor を使用する必要があるようです。

https://github.com/arshaw/fullcalendar/blob/1009caf3b792ad5958d0660ebcpee49fad6f7026/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 に答える