I would like to confirm the user after moving an event or re sizing an event,but i don't want to load from server.
Here is my codec
dp.onEventMoved = function (args) {
if (confirm('Are you sure you want to edit this?')) {
//Continue Http Request
}
else
{
//stopping Http Request
}
};