_docs-v3/event-popover/eventLimitClick.md
Determines the action taken when the user clicks on a "more" link created by the eventLimit option.
<div class='spec' markdown='1'> "popover", "week", "day", view name (string), function </div>"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.
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 priorjsEvent 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 - 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