web-dev-qa-db-ja.com

フルカレンダー:イベントを削除する方法

StackOverflowに関する別の投稿のおかげで、select:メソッドにコードを追加して、ユーザーがNOWより前の日付にイベントを追加できないようにしました。

欠点は、彼らが空のタイムスロットをクリックし、システムが文句を言うと(アラートメッセージ)、試行されたイベントが残ることです。どうすればそれを取り除くことができますか?ありがとう!

更新:これが私のコードです:

    select: function(start, end, jsEvent) {

        var check = start._d.toJSON().slice(0,10),
            today = new Date().toJSON().slice(0,10),
            m = moment(),
            url = "[redacted]",
            result = {};
            title = "Class",
            eventData = {
                title: title,
                start: start,
                end: start.clone().add(2, 'hour'),
                durationEditable: false,
                instructorid: 123,
                locationid: 234
            };


        if(check < today) {
            alert("Cannot create an event before today.");

            $("#calendar").fullCalendar('removeEvents', function(eventObject) {
                return true;
            });

        } else {

            $.ajax({ type: "post", url: url, data: JSON.stringify(eventData), dataType: 'JSON', contentType: "application/json", success: function(result) {

                if ( result.SUCCESS == true ) {
                    $('#calendar').fullCalendar('renderEvent', eventData, true);
                    $('#calendar').fullCalendar('unselect');

                } else {

                    alert(result.MESSAGE);
                }

            }});
        }
    }
6
RobG

FullCalendar V2を使用している場合は、 removeEventsメソッド を使用する必要があります。

この方法で呼び出すことにより、特定のIDを持つイベントを削除するために使用できます。

$("#calendar").fullCalendar('removeEvents', 123); //replace 123 with reference to a real ID

イベントを削除するかどうかを決定する独自の関数を使用する場合は、次のように呼び出すことができます。

$("#calendar").fullCalendar('removeEvents', function(eventObject) {
    //return true if the event 'eventObject' needs to be removed, return false if it doesn't
});
10
leroydev

FullCalendarには、イベントの作成時にremoveEventを使用するidメソッドがあります。

フルカレンダーv1の例:

var calendar = $('#calendar').fullCalendar({ ... stuff ... });
    calendar.fullCalendar( 'addEventSource', {id:123, stuff:'stuff'});
    // ... other calendar things here...
    calendar.fullCalendar( 'removeEvent', 123);

リファレンスAPI v1

FullCalendar v2の例:

var calendar = $('#calendar').fullCalendar({ ... stuff ... });
    calendar.fullCalendar( 'addEventSource', {id:123, stuff:'stuff'});
    // ... other calendar things here...
    calendar.fullCalendar( 'removeEvents', [123]);

リファレンスAPI v2

2
Ross The Boss

フルカレンダーバージョン4

カレンダーからイベントを削除する方法:

<div id="calendar"></div>

<script>
document.addEventListener('DOMContentLoaded', function() {
    var calendarEl = document.getElementById('calendar');
    var calendar = new Calendar(calendarEl, {
      events: [
        {
          id: '505',
          title: 'My Event',
          start: '2010-01-01',
          url: 'http://google.com/'
        }
        // other events here
      ],
      eventClick: function(info) {
        info.jsEvent.preventDefault(); // don't let the browser navigate

        if (info.event.id) {
            var event = calendar.getEventById(info.event.id);
            event.remove();
        }
      }
    });
});
</script>

これは私のために働いた。これもお役に立てば幸いです。この質問をしてくれてありがとう。

1
Kamlesh

バージョン4.3

        calendar = new Calendar(calendarEl, {
                plugins : [ 'interaction', 'dayGrid', 'list' ],
                header : {
                    left : 'prev,next today',
                    center : 'title',
                    right : 'dayGridMonth,timeGridWeek,timeGridDay,list'
                },
                editable : true,
                droppable : true, 
                eventReceive : function(info) {
                    alert(info.event.title);

                },
                eventDrop : function(info) {
                    alert(info.event.title + " was dropped on "
                            + info.event.start.toISOString());

                    if (!confirm("Are you sure about this change?")) {
                        info.revert();
                    }
                },
                eventClick : function(info) {
                     //delete event from calender
                    info.event.remove();

                }

            });

            calendar.render();
        });
0
mumbasa