0

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

4

1 回答 1

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!');
                        }

                    }
                ]

            });
        });
于 2012-10-16T11:37:18.807 回答