我想使用qtip2在完整的日历插件上创建事件

时间:2013-08-26 07:23:36

标签: fullcalendar qtip2

我目前正在使用http://arshaw.com/fullcalendar/(完整日历插件)和qtip2插件。我想使用qtip2 popover创建事件。我不知道该怎么做?谁能指导我这个?

1 个答案:

答案 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.
 }