Top "Javafx-2" questions

OUTDATED - DO NOT USE FOR GENERAL JAVAFX QUESTIONS!

How to make an undecorated window movable / draggable in JavaFX?

I have to create an application in which minimize and maximize button will be disabled. I have used "StageStyle.UNDECORATED" …

javafx-2 minimize maximize
How to disable Button when TextField is empty?

In the following code I have a TextField and a Button. I need to disable the Button when ever the …

button javafx javafx-2 textfield
How can I make a TextArea stretch to fill the content, expanding the parent in the process?

So I have a TextArea and as the user pastes paragraphs into it, or just writes in it, I want …

javafx-2 javafx-8
Javafx PropertyValueFactory not populating Tableview

This has baffled me for a while now and I cannot seem to get the grasp of it. I'm using …

javafx-2 javafx tableview
JavaFX 2 vs Swing for a pure Windows desktop app

I need to write a desktop app and its been a while since I started used Swing so will have …

swing javafx javafx-2
JavaFX2 FXML how to add elements (e.g. Buttons) dynamically

So, what I want to do is, creating a custom element by using fxml and then add a couple of …

instance javafx-2 building fxml
Setting a class Controller for Anchor Pane

When working with JavaFX Scene Builder encountered the following problem... Given: A file fxml, containing description Anchor Pane (fxml formed …

java javafx-2 javafx scenebuilder
How to drag an undecorated window (stage) of JavaFX

I have this undecorated window: public static void initStartPage(final Stage primaryStage) { final Stage startPage = new Stage(); startPage.initStyle(StageStyle.…

javafx-2 javafx javafx-8
JavaFX Scene Builder: pointer cursor onMouseOver

Is it possible to set the mouse cursor to become a pointer (hand) when hovering a Node width JavaFX Scene …

javafx-2 scenebuilder
Usage of JavaFX Platform.runLater and access to UI from a different thread

I have a few questions about Platform.runLater. I have a JavaFX Application class. In this class I run a …

java multithreading javafx-2 event-dispatch-thread