These docs are for an old release.
    
      Info on upgrading to version 2/3
    
  
      Docs Event Data
How to get events onto your calendar. How to dynamically manipulate them after initial load.
            events (as an array)
          
          
            
              An array of Event Objects that will be displayed on the calendar.
            
          
        
      
        
          
            events (as a json feed)
          
          
            
              A URL of a JSON feed that the calendar will fetch Event Objects from.
            
          
        
      
        
          
            events (as a function)
          
          
            
              A custom function for programmatically generating Event Objects.
            
          
        
      
        
          
            events from Google Calendar
          
          
            
              FullCalendar can display events from a public Google Calendar.
            
          
        
      
        
          
            Event Object
          
          
            
              A standard JavaScript object that FullCalendar uses to store information about a calendar event.
            
          
        
      
        
          
            Event Source Object
          
          
            
              An “event source” is anything that provides FullCalendar with data about events.
            
          
        
      
        
          
            eventSources
          
          
            
              A way to specify multiple event sources.
            
          
        
      
    Event Fetching
    
    
  Event Data Parsing
    
    
            eventDataTransform
          
          
            
              Transforms custom data into a standard Event Object.
            
          
        
      
        
          
            allDayDefault
          
          
            
              Determines the default value for each Event Object’s allDay property, when it is unspecified.
            
          
        
      
        
          
            defaultEventMinutes
          
          
            
              Determines the length (in minutes) an event appears to be when it has an unspecified end date.
            
          
        
      
        
          
            ignoreTimezone
          
          
            
              When parsing ISO8601 dates, whether UTC offsets should be ignored while processing event source data.
            
          
        
      
    Methods
    
    
            updateEvent
          
          
            
              Reports changes to an event and renders them on the calendar.
            
          
        
      
        
          
            clientEvents
          
          
            
              Retrieves events that FullCalendar has in memory.
            
          
        
      
        
          
            removeEvents
          
          
            
              Removes events from the calendar.
            
          
        
      
        
          
            refetchEvents
          
          
            
              Refetches events from all sources and rerenders them on the screen.
            
          
        
      
        
          
            addEventSource
          
          
            
              Dynamically adds an event source.
            
          
        
      
        
          
            removeEventSource
          
          
            
              Dynamically removes an event source.