dlsc-software-consulting-gmbh / CalendarFX

A Java framework for creating sophisticated calendar views (JavaFX 8, 9, 10, and 11)
http://www.dlsc.com
Apache License 2.0
782 stars 171 forks source link

Background event / “Painting” / Change schedule #165

Closed dlemmermann closed 2 years ago

dlemmermann commented 2 years ago

A special kind of event that represent a time interval that is closed and should result in calendar having grey background.

Screenshot 2022-08-30 at 12 38 48 Screenshot 2022-08-30 at 12 39 02

One major thing here the determining if the result should be opened or closed. The way FullCalendar works is that you only get the status of the cell where you release the mouse button.

So the logic right now is

This might not really be an issue because what happens when a user release the mouse button will be something that is implemented by the application and not the framework. What would be necessary is information on the interval itself, interval start to interval stop. From there, I can determine if it should be opened or closed.

dlemmermann commented 2 years ago

Most of this functionality is there now.

dlemmermann commented 2 years ago

Added via the "availability" API.