I work in the fullcalendar viewlity function. I use
fullcalendar.css
fullcalendar.min.js.
My code
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'month,basicWeek,basicDay'
},
editable: true,
events:curEvents
});
Works great. But, if I transfer more data to "curevents", the height of the month will be very long. Therefore, I like to add the concept of 'limit events using the ' viewmore / more ' option to display data through a popup window (or), when I click the “viewmore” button it will be redirected to day mode. So I tried the code,
$('#calendar').limitEvents(4);
from the link below =>
fullcalendar how to limit the number of events per day in a month view
. . , .
, .
, .
$('#calendar').limitEvents(4);