创建fullCalendar后绑定事件

时间:2010-04-01 14:52:26

标签: fullcalendar

有没有办法在创建fullCalendar后绑定事件?

类似的东西:

jQuery( '#calendar' ).bind( 'dayClick', function( date, allDay, jsEvent, view ){} );

2 个答案:

答案 0 :(得分:2)

当然可以。

$('#calendar').fullCalendar('renderEvent',
                    {
                        title: 'title',
                        start: 'start date',
                        end: 'end date',
                        id: 'id',
                        description: 'description',
                        allDay: globalAllDay,
                                                 color: 'blue'
                    },
                    true 
                );

答案 1 :(得分:1)

目前这是不可能的,但我真的想在fullcalendar中使用它。当我重新设计一些东西时,可能会在1.5。你可以向issue tracker添加功能请求吗?感谢