我正在使用Fullcalendar。
在我的情况下,我正在添加自定义事件,就像用户点击特定日期一样,他可以添加他的事件,当他完成插入时,他刚刚添加的自定义事件显示自动显示在日历上,意味着新鲜的JSON数据应该重装并出现。
这是我的代码:
events : "ajax/response.php",//Fetching JSON From PHP File//
function insertEventSchedule()
{
var title = $('#titl').val();
var fromDate = $('#fromDate').val();
var toDate = $('#toDate').val();
$.ajax({
type: "POST",
url : "ajax/insert_schedule_event.php",
data: "title="+title+"&fromDate="+fromDate+"&toDate="+toDate+"&timeStamp="+$.now(),
cache: false,
beforeSend: function()
{
$('.submit_data').html('<img src="include/content/loaders/ajax-loader.gif" width="20">');
},
success: function(html)
{
$('#myPopup').dialog('close');
}
});
}
}
答案 0 :(得分:3)
您必须在关闭对话框之前或之后使用renderEvent方法构建事件对象并呈现该事件
<强>更新强>
var newEvent = new Object();
newEvent.title = "some text";
newEvent.start = new Date();
newEvent.allDay = false;
// ...
$('#calendar').fullCalendar( 'renderEvent', newEvent );
事件属性的完整列表是here