Top "Javafx-2" questions

OUTDATED - DO NOT USE FOR GENERAL JAVAFX QUESTIONS!

How can I avoid a SplitPane to resize one of the panes when the window resizes?

I want to resize the pane only manually dragging the splitter with the mouse. But when the window is resized, …

resize javafx-2
GUI testing framework for JavaFX 2

I'm currently reading the book Growing Object-Oriented Software Guided by Tests which gives a decent introduction into test driven development. …

testing javafx javafx-2 javafx-8 gui-testing
JavaFX Scene Builder: How to uncheck "Resize" option in Layout tab?

I want to make my .fxml application to not be resizeable, but I am not able to uncheck "Resizeable" check …

javafx javafx-2 scenebuilder
JavaFX 2 TableView header font color

How can I change the text color of the TableView component's header? I tired this: .table-view .column-header, .table-view .filler { -fx-text-fill: …

css tableview javafx-2 textcolor
MVC with javaFX

I'm struggling with the MVC concept using javaFX. I am building an javaFX application using fxml files. Each fxml file …

java model-view-controller javafx javafx-2
JavaFX 2: How to focus a table row programmatically?

I am trying to select/focus a row of a TableView programmatically. I can select a row, but it is …

java focus javafx-2 tableview
JavaFX: TableView: Arrow for a column sorted by default

I have a simple java fx application which has a table view. The table view shows some data that is …

javafx-2 tableview sorted tablecolumn
JavaFX HBox hide item

How can i hide an item in HBox, and made space used by this item available to other items. TitledPane …

java javafx-2
Cannot get border to differ from side-to-side or up-and-down in TableCell javafx 2

I am trying to create a schedule interface within javafx 2+, and I am having trouble getting the TableView to contain …

css tableview javafx-2 tablecell
TableView: adjust number of visible rows

I'm using this table to display data in Table View: import javafx.application.Application; import javafx.beans.property.IntegerProperty; import …

javafx javafx-2 tableview javafx-8