eventDrop: function(event, dayDelta, revertAction) {
$.post("/calendar/",{id: event.id } ,
function(result) {
if (result == "succeed"){
alert('succeed');
}
else{
alert("Server error, Please try again");
}
},"json");
}
所以在这个方法中,我有一个ajax调用.我希望只有在从服务器返回成功时才更新日历,否则它什么都不做.这种代码是如何编写的?
最佳答案
http://arshaw.com/fullcalendar/docs/event_rendering/rerenderEvents/
.fullCalendar( 'rerenderEvents' )