These docs are for an old release.
Info on upgrading to v4
eventLimitClick
Determines the action taken when the user clicks on a “more” link created by the eventLimit option.
“popover”, “week”, “day”, view name (string), function
"popover"
(the default)- Displays a rectangular panel over the cell with a full list of events for that day.
"week"
- Goes to a week view, as determined by the views in the header.
"day"
- Goes to a day view, as determined by the views in the header.
- view name
- A literal string name of any of the available views.
- function
- A callback function, for executing arbitrary code.
Callback Function
function( cellInfo, jsEvent )
cellInfo
is an object that holds named properties for information about the day cell:
date
- the Moment date of the daydayEl
- jQuery element for the day cellmoreEl
- jQuery element for the “more” linksegs
- array of all event “segment” objects for the given dayhiddenSegs
- array of only the segment objects that were not displayed prior
jsEvent
holds the native JavaScript event for the click.
A callback function can return a string value, like "day"
, that will be processed as the new value of the setting.
Event Segment Object
event
- the Event Objectstart
- the Moment for when this stretch of the event beginsend
- the Moment for when this stretch of the event ends (exclusive)isStart
- boolean if this is chronologically the first segment for the eventisEnd
- boolean if this is chronologically the last segment for the event