Posts by DOM • 71 points
3 posts
-
4
votes2
answers1251
viewsQ: Javafx Threads Update UI and load System in the background
I have a Stage Main that is my Login: In the FXML of that Stage I have a Region and a ProgressIndicator with the property setVisible(false) After successfully logging into the application the…
-
1
votes1
answer110
viewsA: Tableview Changelistener - NPE
Solution provided by James_d import javafx.application.Application; import javafx.application.Platform; import javafx.beans.property.SimpleStringProperty; import…
-
2
votes1
answer110
viewsQ: Tableview Changelistener - NPE
I have two Tableview (tabela1 and tabela2) side by side. What I need to do is: when selecting an item in tabela1 the corresponding item in the tabela2. So far so good, it was easy, but I need to…