私は以下のコードを持っています:
eventDrop: function(event,dayDelta,minuteDelta,allDay,revertFunc) {
if (!confirm('some question')) {
revertFunc();
}
else {
$.ajax({
url: '/some/url/',
error: function(){
revertFunc();
alert('some text');
},
});
}
}
そして、eventDropメソッド(revertFuncを使用)で標準のjs確認ボックスの代わりにjqueryダイアログを使用したい。
それを行うためのアイデアはありますか?