Hi.
In the Month-View of the Scheduler I only would like to render the events that are allDay events. In all other views (day, week, etc) everything should show. Currently I solve this using conditional rendering but I wonder if there would be a more efficient way to achieve this. So what I do right now is that I have a custom EditItem for the MonthView and in the EditItem I do this:
return (
<>
{dataItem.isAllDay && (
<SchedulerEditItem ...
I wonder if I somehow do this in a more efficient way by not even using the MonthView for the non all day events or so. Any ideas?