Closed (fixed)
Project:
Fullcalendar View
Version:
5.0.7
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
4 Aug 2020 at 13:33 UTC
Updated:
25 Mar 2021 at 23:24 UTC
Jump to comment: Most recent, Most recent file
Comments
Comment #2
gord.fisch commentedComment #3
mihai11 commentedHello. With this patch you will be able to change the event limit or the text displayed via the hook(hook_fullcalendar_view_variables_alter) provided by the module. You can find more information here.
Comment #4
bbu23Comment #5
szeberli commentedthis is a patch for 5x
Comment #6
szeberli commentedwith this patch all items are displayed
Comment #7
rjhammond commentedPatch from #6 works to display all. Thank you!
Comment #8
a.sinitsa commented#6 works. Thank you!
Comment #9
mingsongThanks everyone for your patches and testing.
FullCalnedar.js allows to specify the number of events displayed on a day. It is also better if we allow user to decide for each view whether need a limit on it.
So the following patch introduce a new setting for the view to specify how many events should be displayed for a day.
Comment #11
mingsongWill be released with 5.0.8
Thanks everyone again.
Comment #12
justafishI'm not sure if this is the case for v4, but for v5 I had to explicitly cast the value to FALSE (instead of 0) to show all events. I've updated https://www.drupal.org/project/fullcalendar_view/issues/3085884#mr9-note... in the v5 upgrade issue, but it might need cherry picking over to here as well
Comment #13
mingsongThanks Sally for your excellent work on this module.
From a user perspective who is not familiar with FullCalendar, when they see the description of the setting said "Limits the number of events displayed on a day.", they might not be aware that this setting also accept a boolean value of FALSE.
In the case where they want to display all events, they might be specify a very big number, for example 1000, rather than a boolean value.
According to my test, the V4 is working well with value of 'FALSE', which will be converted to integer value of 0. All events are listed in the month view.