My events have a onBeforeEventRender to create custom HTML based on some event data as well as other data outside of the event.
When the "outside" data changes, I want to force the scheduler to rerender one or more events. I see there is this:
dpSchedule.events.update(e);
However, that involves sending data to the server. I just want it to rerender the HTML, based on the new data (calling onBeforeEventRender). How do I do that?
Thanks.