Passing Parameters JavaFX FXML

Using MVC Most of this answer focuses on a direct call to pass a parameter from a calling class to the controller. If instead, you want to decouple the caller and controller and use a more general architecture involving a model class with settable and listenable properties to achieve inter-controller communication, see the following basic … Read more

Google Maps & JavaFX: Display marker on the map after clicking JavaFX button

If I had to guess – one of two things is happening: Either A) your javaFX is not supporting cross site ajax calls or B) it is not waiting for the asynchronous ajax response/something else is going wrong. So let’s do some testing together. Firstly can we clean this up to nest the ajax calls? … Read more