| Issue 594: | Add event element. | |
| 2 people starred this issue and may be notified of changes. | Back to list |
Have event.element or something similar reference the actual element that the event maps to. If there is more than one element that the event references, I suppose it could be an array of elements. This could be useful for individually modifying the html on events. Such as when filtering through all the client events.
Aug 26, 2010
I might do something wrong but I use the eventRender event to do so:
$('#calendar').fullCalendar({
...
eventRender: function(event, element) {
event.div=element;
}
});
And then I can use in any Fullcalendar methode like a loop through all clientEvents the event.div to do nice things such as jquery or jquery UI effects:
$(event.div).effect("pulsate");
By the way, very very nice work Adam!
Laurent
|
|
| ► Sign in to add a comment |
Mergedinto: 263