0
添加eventclick可能是非常簡單的,但是當我把投擲的事件,我想自動點擊它如何在投擲的事件
$('#calendar').fullCalendar({ droppable: true, drop: function(date) { //the command go here! this.click or something like that } });
請幫助!
添加eventclick可能是非常簡單的,但是當我把投擲的事件,我想自動點擊它如何在投擲的事件
$('#calendar').fullCalendar({ droppable: true, drop: function(date) { //the command go here! this.click or something like that } });
請幫助!
試試這個:
eventDrop: function(event, delta, revertFunc) {
$(this).trigger('click');
},
eventClick: function(calEvent, jsEvent, view) {
console.log('event clicked');
}
https://jsfiddle.net/ewojadd3/
問候
剋日什托夫·