dayMaxEvents no longer works in Filament v5 #157
Replies: 1 comment
|
From the current package source, the option has not been removed.
The important limitation is in the package docs and trait comment: it applies to the dayGrid view, and protected string $calendarView = 'dayGridMonth';
protected bool $dayMaxEvents = true;Also make sure If those are all true and Filament v5 still renders every event, that sounds more like a regression in the package or the vkurko calendar integration than an intentional API change. A minimal widget with only |
Uh oh!
There was an error while loading. Please reload this page.
After upgrading to Filament v5, the following configuration no longer appears to have any effect:
protected bool $dayMaxEvents = true;
In Filament v4, this worked as expected by limiting the number of visible events per day and displaying a "show more" link when there were additional events.
In Filament v5, all events are rendered without the "show more" behavior, even with dayMaxEvents set to true.
Is this an intentional change, a regression, or is there a new configuration that should be used to achieve the same behavior?
All reactions