Как отменить действие Day Pilot.Scheduler для события, перемещенного на последнее событие, которое я сохранил, без перезагрузки страницы?
Как мне отменить действие DayPilot.Scheduler
на событие перенесено на последнее событие, которое я сохранил без перезагрузки страницы?
if (response.result == "OK") {
if (confirm('Are you sure you want to edit this?')) {
DayPilot.request("backend_move.php",
function(req) { // success
var response = eval("(" +req.responseText + ")");
if (response && response.result) {dp.message("Moved: " +response.message);
}
},
args,
function(req) { // error
dp.message("Saving failed");
}
);
//loadEvents();
} else {
args.preventDefault();
}
}