我目前正在使用http://arshaw.com/fullcalendar/(完整日历插件)和qtip2插件。我想使用qtip2 popover创建事件。我不知道该怎么做?谁能指导我这个?
答案 0 :(得分:0)
将选项select
绑定到新函数youFunction
(回调)。在这个新功能中,您应该接收所选的日期参数,然后您可以根据需要操作和保存事件。
$('#calendar').fullCalendar({
// put your options and callbacks here
//...
select: yourFunction,
//...
});
function yourFunction(startDate, endDate, allDay) {
//open your popover, manipulate the data and save the event.
}