You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Similar to JavaFxObservable#eventsOf(Node, EventType<T>), JavaFxObservable should have a method to observe Event objects during the capturing phase of event delivery. Internally, such method would use Node#addEventFilter(EventType, EventHandler) instead of Node#addEventHandler(EventType, EventHandler).
The text was updated successfully, but these errors were encountered:
If there is still any chance to add it I would suggest JavaFxObservable.eventsOf(Node, EventType, Phase)
where enum Phase {CAPTURING, BUBBLING} (as described https://docs.oracle.com/javafx/2/events/processing.htm#CEGJAAFD) or enum Phase {FILTERING, HANDLING)
@pkrysztofiak noted. I'm trying to get 2.11.x out (having BinTray deployment issues #73 ) and then I will start implementing these new features in both 2.8.x and 2.11.x.
Similar to
JavaFxObservable#eventsOf(Node, EventType<T>)
, JavaFxObservable should have a method to observe Event objects during the capturing phase of event delivery. Internally, such method would useNode#addEventFilter(EventType, EventHandler)
instead ofNode#addEventHandler(EventType, EventHandler)
.The text was updated successfully, but these errors were encountered: