Fullcalendar - 如何从系列中删除一个事件? 它有可能吗?
答案 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!');
}
}
]
});
});