Issue 1163: Element does reflect change in css through eventRender
Status:  WontFix
Owner: ----
Closed:  Aug 2013
Reported by jeff.em...@gmail.com, Oct 29, 2011
Using a json event source

eventSources: [
  {
    url: docRoot + '/Schedule/Home/GetCalendarEvents/',
    type: 'POST',
    dataType: 'json',
    data: { CalendarName: 'Cool Calendar' },
    }
]

The following code will render the element without change the text color to red.

eventRender: function (event, element, view) {
            element.css("color", "red");
   }

This code will render the element with the text red.

eventRender: function (event, element, view) {
            element.css("color", "red");
            element.text(element.text());
        }

jquery-1.6.4
jquery-ui-1.8.16
fullCalendar 1.5.2

...Beautiful work too.
Oct 30, 2011
#1 jeff.em...@gmail.com
I think maybe this is not an issue with a better understanding of the event element design. I presented my solution here 
http://stackoverflow.com/questions/7918301/fullcalendar-doesnt-render-color-when-using-eventrender/7946973#7946973

Thanks.
Nov 2, 2011
Project Member #2 althaus.it
(No comment was entered for this change.)
Status: Reproducing
Aug 14, 2013
Project Member #3 adamrs...@gmail.com
see my comment here:
https://code.google.com/p/fullcalendar/issues/detail?id=944#c10
Status: WontFix
Labels: -Type-Defect Type-Bug