Hello,
how can i do some javascript in the afterRender event? (http://api.daypilot.org/daypilot-calendar-afterrender/) There is no property in the DayPilotCalendarConfig for this event.
Thanks!
Ok, I've found a solution. I overwrite the function in the document.ready.
Example:
$(document).ready(function () { dpCalendar.afterRender = function () { afterRenderCallback(); } });