Vladimir
Vladimir
Ok. The point is that now in the month view, changes always occur in the form of plus or minus 1 day. Thus, if an event starts at 4pm and...
Yes, but anyway, I think the calendar behavior is really non-obvious in such cases. I'll leave this ticket open, maybe there will be an idea how to improve the behavior....
> If it starts 2022-06-23 9:00am and ends 2022-06-24 5:30pm if you reduce it to a one day event then end date = 2022-06-23 5:30pm. This is exactly how it...
@AdrianGzzEsc, if you can prepare a [JS Bin](https://jsbin.com/) (or similar) example, then maybe I can help you.
> I'll leave this ticket open, maybe there will be an idea how to improve the behavior. For example, FullCalendar seems to allow only all-day events to be resized in...
The resizing step is actually tied to the displayed step, which is configured by the [slotDuration](https://github.com/vkurko/calendar?tab=readme-ov-file#slotduration) option.
FullCalendar has a setting called [snapDuration](https://fullcalendar.io/docs/snapDuration). I think it can be implemented in the Event Calendar in the future.
Yes, I agree that the documentation lacks examples, so I'd be happy if you can make some useful demo code that can be used as a base.
By the way, it is possible to override `theme` for each view separately: ```js views: { dayGridMonth: { theme() { // return theme } } timeGridWeek: { theme() { //...
I think you need a setting similar to [validRange](https://fullcalendar.io/docs/validRange), which is not implemented in the Event Calendar. I will leave this ticket open until it is implemented. Unfortunately, I can't...