How to propagate an event to a different stage in JavaFX

697 Views Asked by At

Here is my problem: In JavaFX the event system propagates to the Stage node and stops there. In my current project I have two stages:

  • The primary stage in Main
  • Another stage created in an FXML Controller

Inside the secondary stage, the controller fires a custom event, but since it stops at the secondary stage it doesn't get caught in my primary stage.

My question is: how would I go about getting my custom event to propagate in the hierarchy of the primary stage.

If you're wondering, the purpose of this is to create a popup window with custom formatting from an FXML file.

Thank you for answering.

0

There are 0 best solutions below