Reload scheduler in select mode after event drag and drop.

Hi,
I want to reload scheduler after event drag and drop. How to implement this? Please reply as soon as possible.

Thanks in advance
Shiju

You can use the next code to reload the data

scheduler.clearAll() scheduler.load(url);

and onBeforeEventChanged or onEventChanged handler to trigger reloading.

i want to reload after event drag and drop

onBeforeEventChanged handler will be called after any dnd action, so it can be used for such goal.