You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This should be a feature of your app and not of this library. You can implement it something like this (thought there are probably a few, this is what comes to mind):
calendar.on('dropped', function(cal, event){
var revert = // y/n from user
if(revert){
cal.state.dragging = true;
cal.state.dragged = event;
cal.state.newPosition = event.position;
cal.state.newAt = event.at;
cal.moveCell(event);
}
});
calendar.on('cellDidNotMove', function(cal){
cal.render();
});
Hi,
If the event is moved to a different date, can ask the user to "Are you sure? "
Thank you
The text was updated successfully, but these errors were encountered: