jQuery fullcalendar custom event
Posted
by raulriera
on Stack Overflow
See other posts from Stack Overflow
or by raulriera
Published on 2010-04-12T05:36:09Z
Indexed on
2010/04/12
5:43 UTC
Read the original article
Hit count: 534
Hi,
I was wondering how to apply a custom render to a event... I want to be able to preppend the "patient" name of a practice agenda...
eventRender: function(event, element) {
console.log(element[0]);
}
This currently shows the HTML output in the console, but I don't know how can I access it (in a pretty jquery manner) in order to manipulate the data within.
Thanks
© Stack Overflow or respective owner