1

我正在寻找一种方法来根据 eventSource 拥有不同的 eventClick 并拥有一些没有 eventClick 的 eventSource。这样我可以让一个事件根据它的来源打开一个不同的弹出窗口。

我从这个例子开始:

$(document).ready(function() {

        $('#calendar').fullCalendar({
                height: 600,
                theme: true,
                eventSources: [
                    {
                    url: 'http://www.google.com/calendar/feeds/usa__en%40holiday.calendar.google.com/public/basic',
                    className: 'fc-event-title-event'                   
                    } ,
                    {
                    url: 'testCalendar',
                    color: 'red',
                    currentTimezone: 'America/New_York',
                    editable: true                   
                    } 

            ],

            eventClick: function(calEvent, jsEvent, view ) {                        
                        alert('Event: ' + calEvent.title);
                        alert('Coordinates: ' + jsEvent.pageX + ',' + jsEvent.pageY);
                        alert('View: ' + view.name);

                        //window.open(event.url, 'gcalevent', 'width=700,height=600');
                        return false;
                    },      

            loading: function(bool) {
                if (bool) {
                    $('#loading').show();
                }else{
                    $('#loading').hide();
                }
            }           
        });     
    });

两个源都触发了 eventClick。似乎有一种方法可以自定义每个源的 eventClick,但我没有在文档中看到它,也没有在 stackoverflow 和谷歌的无数搜索中看到它。

先感谢您。

4

1 回答 1

2

嗯,我不认为eventSources有一个选项eventClick。您可以使用该calEvent对象并检查它source以确定如何处理单击事件。除此之外,我认为 fullcalendar 没有您正在寻找的内置功能。

希望这可以帮助。

于 2013-05-07T15:58:51.600 回答