Refresh Scheduler.net after adding event

Is there a way to refresh the scheduler after an event is added?
I have tried to code below immediately after the event is created inside Page_Load method but had no luck. Any suggestions?

scheduler.LoadData = true;
scheduler.EnableDataprocessor = true;
scheduler.EnableDynamicLoading(SchedulerDataLoader.DynamicalLoadingMode.Week);
scheduler.UpdateFieldsAfterSave();

scheduler.DataAction = this.ResolveUrl("~/TaskDataLead.ashx");

Hello,
do you want to reload the entire page or scheduler’s data?
Anyway you can do it with the client-side API by catching onEventAdded event of the scheduler
docs.dhtmlx.com/scheduler/api__s … event.html