Search found 3012 matches

Because we don't really use visibility. We don't find it that useful. The element is still layed out and takes up space.

When we hide, we use display:none

That looks like a bug in the HTML rendering engine. What platform is that on?

That is this config of DayView: https://bryntum.com/products/calendar/docs/api/Calendar/widget/DayView#config-layout

Configure the day and week modes with that.

You want a TimeRange indicated by some kind of stylable background?

We have a Feature for that: https://bryntum.com/products/calendar/docs/api/Calendar/feature/TimeRanges

And an example: https://bryntum.com/products/calendar/examples/timeranges/

Yes, this could be more intuitive. Technically, the end date above is Jan 18th at 00:00:00.000, but that is not visually easy to understand for the end user.

We can make it show the last date which the event occupies: https://github.com/bryntum/support/issues/9028

I don't think CrudManager can do that. It just loads the resources that are returned.

You can use this event to load data: https://bryntum.com/products/scheduler/docs/api/Scheduler/view/TimelineBase#event-dateRangeChange

Screenshot 2024-04-17 at 18.55.09.png
Screenshot 2024-04-17 at 18.55.09.png (1.09 MiB) Viewed 78 times
Event bars could show a badge. Screenshot 2024-04-17 at 07.42.52.png It's DayView that needs some thought. Because there might be limited space How would this one hour event show ten child events? It's a very different concept from in the Scheduler. The height of an event in a DayView is defined sol...
Calendar doesn't currently support nested events. It's difficult to conceive of how they could be supported in views which render bars , so the all day section of DayView, and MonthView, and YearView cannot show nesting. Though maybe they could somehow indicate that they contain child events. So in ...
Yes, you will listen for the visibleDateRangeChange event, and then depending upon whether today's date is inside the "new" range passed, toggle a my-sheduler-contains-today CSS class on your scheduler element. Then, the Container which you have configured as positioned : true, appendTo : ...