全面事件过滤后丢失了颜色



我设法将jQuery过滤放在日历的事件上。但是,在没有过滤之后,这些事件将失去我对它们的颜色。有什么想法如何改变?谢谢!

    $(document).ready(function() {
            $('#calendar').fullCalendar({
                defaultView: 'month',
                prev: 'left-double-arrow',
                next: 'right-double-arrow', 
                height: 650, 
                aspectRatio: 2,
                 eventSources: [
                    {   
                        googleCalendarApiKey: GAPI,
                        googleCalendarId: googleCalendarId1,
                        color: '#f25d1d',    
                        textColor: 'white' 
                    }
                ], // To prevent click access to G Calendar
                eventRender: function(event, element) {
                    element.on('click', function (e) {
                        e.preventDefault();
                    });
                },
                 header: {
                    left: '',
                    center:'prev title next',
                    right: 'month,listMonth,'
                }                     
            });
            $("#checkbox1").change(function() {
                if(this.checked) {
                  $('#calendar').fullCalendar( 'addEventSource',  googleCalendarId1 );
                }
                else{
                $('#calendar').fullCalendar( 'removeEventSource',  googleCalendarId1 );
                }
            });
 });

您问题中的代码根本不起作用 - 简单地添加日历ID,因为事件源将导致FullCalendar请求该URL,并使404返回。该Google日历的事件不会重新添加到日历上。除了您描述的有关颜色的问题之外。

无论如何,您肯定也会丢失颜色信息。当您删除事件源时,它会丢失,当您添加事件源时(即使您正在做的事情都可以使用(,您也不会重新提供该配置信息,包括颜色设置。

明显的解决方案是将事件源配置保留为变量中的单独对象,然后每次添加并删除该变量。这两个都将保持颜色设置,并实际上使上方的代码正确地重新添加了事件源。

 var calendar1Source = {
    id: 1,
    googleCalendarApiKey: "SomeAPIKey",
    googleCalendarId: "SomeCalendarID",
    color: '#f25d1d',
    textColor: 'white'
  };
  $('#calendar').fullCalendar({
    header: {
      left: 'prev,next today',
      center: 'title',
      right: 'month,agendaWeek,agendaDay'
    },
    defaultView: 'month',
    eventSources: [calendar1Source],
    // To prevent click access to G Calendar
    eventRender: function(event, element) {
      element.on('click', function(e) {
        e.preventDefault();
      });
    }
  });
  $("#checkbox1").change(function() {
    if (this.checked) {
      $('#calendar').fullCalendar('addEventSource', calendar1Source);
    } else {
      $('#calendar').fullCalendar('removeEventSource', calendar1Source);
    }
  });

请参阅此示例的工作演示,使用我碰巧知道的公共日历:http://jsfiddle.net/sbxpv25p/208/

相关内容

  • 没有找到相关文章

最新更新