FullCalendar:删除按钮单击事件

问题描述 投票:0回答:3

我正在尝试从 FullCalendar 中删除动态选择的事件。

当呈现此事件时,它也会显示在表格中,并在每行末尾有一个删除按钮。

我想要做的是,当我单击删除按钮时,它也会删除日历上的事件。 我可以从表格中删除该行,但不能从日历中删除该行。

这是我选择事件的代码

var eventID = 0;
$('.calendar').fullCalendar({
    select: function(start, end, event, view, resource) {
            if(start.isBefore(moment())) {
                $('.calendar').fullCalendar('unselect');
                swal('Ooops!','You cannot select past date/time!','error')
            }else{
                $('#reserved_date').val(moment(start).format("YYYY-MM-DD"))
                $('#end_time').val(moment(end).format("hh:mm A"));
                $('#start_time').val(moment(start).format("hh:mm A"));
                $('#newScheduleModal').modal({
                    show : true,
                    backdrop: 'static',
                    keyboard: false
                });
                eventData = {
                    id: eventID +1,
                    title: 'Lesson Schedule',
                    start: start,
                    end: end,
                };
            }
            $(".fc-highlight").css("background", "red");

    },
    events: obj,
    eventRender:function( ev, element ) { 
        eventID++; 
        $('#sched_data').append('<tr class="tb-row">'+
            '<td>'+moment(ev.start).format('MMM. DD, YYYY')+'</td>'+
            '<td>'+moment(ev.start).format('hh:mm A')+'</td>'+
            '<td>'+moment(ev.end).format('hh:mm A')+'</td>'+
            '<td><button class="btn btn-danger btn-del btn-xs" data-id"'+ev._id+'"><i class="fa fa-times"></i></button></td></tr>'
        )
    },

})

这是将事件渲染到日历的代码

$('#btn-reserve').click(function(){
        $('.calendar').fullCalendar('renderEvent', eventData, true);

})

这是我删除事件的代码

  $('body').on('click','.btn-del',function(){
    $(this).closest('.tb-row').remove();
    $('.calendar').fullCalendar('removeEvents', $(this).data('id'));
  })
javascript jquery fullcalendar
3个回答
1
投票

如果您要使用

eventClick
删除事件,您可以尝试这样:

document.addEventListener('DOMContentLoaded', function () {
  var calendarEl = document.getElementById('calendar');

  var calendar = new FullCalendar.Calendar(calendarEl, /*OPTIONS*/);

  calendar.on('eventClick', function (info) {
    calendar.getEventById(info.event.id).remove();
  });

});

0
投票

我已经做到了,

我的代码:

$('body').on('click','.btn-del',function(){
    $(this).closest('.tb-row').remove();
    $('.calendar').fullCalendar('removeEvents', $(this).data('id'));
})

应该是什么

$('body').on('click','.btn-del',function(){
    var del_btn = $(this);
    del_btn.closest('.tb-row').remove();

    $(".calendar").fullCalendar('removeEvents', function(event) {
        return event.id == del_btn.data('id');
    });
})

第二个参数应该是一个函数,而不仅仅是普通的 id。


0
投票

Fullcalendar 中的每个事件都有自己的由 Fullcalender 生成的 ID。

请将此添加到您的论点中:

eventClick: function(calEvent, jsEvent, view) {
    $('#calender').fullCalendar('removeEvents', calEvent._id);
},
© www.soinside.com 2019 - 2024. All rights reserved.