If you're interested in the implementation, please have a look at the draft PR: https://github.com/openjdk/jfx/pull/663
This feature is implemented on the FX beans level in javafx.base, so there's no need to have access to javafx.graphics. On Wed, Nov 10, 2021 at 8:52 AM Tom Schindl <tom.schi...@bestsolution.at> wrote: > > Hi, > > We had something very similar in Eclipse-Databinding so I think > something like that makes a lot of sense but I wonder how you want to > implement this FOCUS, ACTION. > > Another thing we had was a delayed-Observable where the sync only > happened if there hasn't been a change with a user specified timeout > which fairly nice to implement undo/redo like stuff eg in TextAreas. > > As you don't have access to Node in javafx.base I'm not sure how you > want to implement the trigger stuff. Just in case in Eclipse-Databinding > world we had stuff like this in a module (in this case OSGi-Bundle) who > has access to both the core-API and the ui-API. > > Tom