Fullcalendar 1.5.4 - 如何从系列中删除一个事件?

时间:2012-10-15 19:25:36

标签: fullcalendar

Fullcalendar - 如何从系列中删除一个事件? 它有可能吗?

1 个答案:

答案 0 :(得分:0)

更多信息会有所帮助,但在渲染日历时,您仍然必须返回唯一ID。

我建议您通过eventRender方法捕获ID并将其删除。 以下是我如何实现它。

$(document).ready(function() {
            $('#calendar').fullCalendar({
                editable: true,
                theme: true,
                eventRender: function(event,element) {
                    if(event.id=="3")
                    {
                        element.remove();
                    }

                },

                eventSources: [
                    {
                        url: "jsonarray.jsp",
                        type: 'POST',
                        dataType: 'json',
                        error: function() {
                            alert('there was an error while fetching events!');
                        }

                    }
                ]

            });
        });