I would like to to pass the colors for the events through my json events source for jquery fullcalendar, how do i achieve this ?

link|improve this question

68% accept rate
feedback

4 Answers

up vote 11 down vote accepted

Nothing easier than that. If you check the documentation of jQuery Fullcalendar Event Colors you see that there is a parameter className you can specify for each event object. The content of that parameter gets added as class to the events and thus you only need to specify the css with matching name.

The events (take note of the className parameter on event1)

[
  {
    title     : 'event1',
    start     : '2010-03-10',
    className : 'custom',
  },
  {
    title  : 'event2',
    start  : '2010-03-05',
    end    : '2010-03-07'
  },
  {
    title  : 'event3',
    start  : '2010-03-09 12:30:00',
    allDay : false
  }
]

The CSS to make event1 look different

.custom,
.fc-agenda .custom .fc-event-time,
.custom a {
    background-color: green; /* background color */
    border-color: green;     /* border color */
    color: yellow;           /* text color */
}

Check here http://jsbin.com/ijasa3/22 for a quick sample. Note how event1 has green as background and yellow as text color.

link|improve this answer
Oh yeah, i overlooked it , will check if i could pass it through the JSON. thanks – Aneef Mar 14 '10 at 17:30
the jsbin link is broken – 3nigma Sep 13 '11 at 6:49
Fixed the jsbin link – jitter Sep 13 '11 at 21:30
feedback

With version 1.5 you can set textColor, backgroudColor and borderColor in each event.

link|improve this answer
feedback

If you upgrade to version 1.5 you may find this does not work. The solution appears to be to comment out the style

.fc-event-skin { }
link|improve this answer
feedback

Here is an example of how to add color dynamicly from an ASP.NET webservice.
http://jake1164.blogspot.com/2010/06/jquery-fullcalendar-and-aspnet.html

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.