Hello,
You can use the AppointmentMoveEnd event to ask the user for confirmation:
function aptMoveEnd(sender, eventArgs)
{
if (!confirm("Confirm move?"))
{
eventArgs.set_cancel(true);
}
}
That is if it wasn't for a bug in RadScheduler that will cause it to abort the drag while the confirmation dialog is still shown. We're working to resolve it, but in the meantime you'll have to use this code:
function aptMoveEnd(sender, eventArgs)
{
sender._dragging = false;
if (!confirm("Confirm move?"))
{
eventArgs.set_cancel(true);
}
sender._dragging = true;
}
I hope this helps.
Best wishes,
Tsvetomir Tsonev
the Telerik team