Event Data
- Event Object
- A standard object that FullCalendar uses to store information about a calendar event.
- 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.
- eventSources
- A way to specify multiple event sources.
- allDayDefault
- Determines the default value for each Event Object's allDay property, when it is unspecified.
- startParam
- A GET parameter of this name will be inserted into each JSON feed's URL.
- endParam
- A GET parameter of this name will be inserted into each JSON feed's URL.
- cacheParam
- A GET parameter of this name will be inserted into each JSON feed's URL to prevent caching.
- lazyFetching
- Determines when event fetching should occur.
- loading (callback)
- Triggered when event fetching starts/stops.
- updateEvent (method)
- Reports changes to an event and renders them on the calendar.
- clientEvents (method)
- Retrieves events that FullCalendar has in memory.
- removeEvents (method)
- Removes events from the calendar.
- refetchEvents (method)
- Refetches events from all sources and rerenders them on the screen.
- addEventSource (method)
- Dynamically adds an event source.
- removeEventSource (method)
- Dynamically removes an event source.
See also: renderEvent (for adding an event)
|