| Issue 1163: | Element does reflect change in css through eventRender | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Nov 2, 2011
(No comment was entered for this change.)
Status:
Reproducing
Aug 14, 2013
see my comment here: https://code.google.com/p/fullcalendar/issues/detail?id=944#c10
Status:
WontFix
Labels: -Type-Defect Type-Bug |
|
| ► Sign in to add a comment |