Questions tagged [javafx-9]

JavaFX 9 introduces a new API for JavaFX technology. It is part of the JDK9.

The JavaFX APIs define a set of user-interface controls, graphics, media, and web packages for developing rich client applications.

46 questions
1
vote
0 answers

JDK 9 SIGSEGV Fatal Error

Running eclipse plugin with a WebView component ends with SIGSEGV error, which happens to be an ancient bug as in here. # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x000000013a06a254, pid=23881,…
muratozyurt
  • 101
  • 8
1
vote
1 answer

JavaFx JFoenix Java9

so I updated my Java from 8 to 9, and I do realize that Jfoenix has separate Jar file for Java 9. However after download the Jar file then trying to import to Scene builder like I did before, nothing shows up, None of the custom controller shows up…
Qifan Guo
  • 1,344
  • 1
  • 8
  • 10
1
vote
1 answer

JavaFX WebView usage, transparent background, jdk8 vs jdk9

I have some code snipped out of a much bigger app, which renders some white text on a black background in a JavaFX WebView. The background colour of the page is set to transparent, using some code from Transparent background in the WebView in…
1
vote
2 answers

stylesheets in FXML (JDK 9)

doesn't work after update to JDK 9. Caused by: java.lang.IllegalArgumentException: Unable to coerce @MainView.css to class java.net.URL. Can you help me?
Dmitrij Krupa
  • 121
  • 1
  • 5
0
votes
0 answers

How to fix the error in load() method of FXMLLoader

I'm doing a project using javafx where scene changing is applied. There are two fxml files, first scene contains a button which is supposed to move the scene to the next scene. But I got an error in the controller class of first fxml file at the…
Mateen
  • 1,455
  • 10
  • 17
0
votes
2 answers

JavaFX Stage size unpredictable after a show()

OS: RHEL 7.4 DE: KDE Plasma 4.11.19 and GNOME 3.22.2 Java version: 9 and 10 I'm having issues trying to figure out the size of a Stage after show() has been called. Everything was working fine before in Java 8/RHEL 6 and I could get the Stage's size…
CeCe
  • 1
  • 2
0
votes
0 answers

JavaFX FXML setUserData DAO

I have an application that takes in an FXML to load. The FXML is external to the application (not made by the developer). The application has a server connection to get telemetry data. I need to update nodes based on these telemetry data. In that…
DJViking
  • 832
  • 1
  • 12
  • 29
0
votes
0 answers

Javafx TextField always throws "Empty String" error

The code below is supposed to allow the user to type in the details of the new product they're adding into a list (except the Choicebox). Almost all of the code works, with the exception being the method handlePrice(). Whenever the user attempts to…
nimbus_b
  • 3
  • 1
0
votes
0 answers

Import PropertyValueFactory cannot be resolved

As the title says: Somehow java can't find the PropertyValueFactory class, although it is in the system library (as seen in the picture at the link) and I've got no idea why. Other classes from that package are working, just this specific one…
Sa'Kagé
  • 51
  • 1
  • 1
  • 4
0
votes
0 answers

JavaFX 9 - inserting flowpane below row depending on clicked tablecell, part 2

I'm trying to implement a TableView containing 2 columns. Each table cell contains a different player's data. Once a player is clicked, a custom FlowPane containing data corresponding to the clicked player is shown below the row that the player is…
Simon
  • 67
  • 6
0
votes
0 answers

ZipException: zip END header not found in java-9

util.zip.ZipException: zip END header not found exception when try to load javafx fxml view in java-9. Details My Application is a Javafx(uses fxml view) which is built and compiled using java-8(jdk-8 64-bit) and accessed as a WebStart with…
0
votes
2 answers

Using CcontrolsFX's SpreadsheetView in Java 9

I've got an application written in Java 8 with ControlsFX 8.40.14. I run the app under Java 9 (jdk-9.0.1 to be precise) and I got the following exception when the app tries to display SpreadsheetView component. Exception in thread "JavaFX…
user1053510
  • 1,548
  • 1
  • 15
  • 23
0
votes
1 answer

Is it possible to add multiple table view using a single Controller class and multiple entity Class in Java FX?

My question is about JavaFX-9. I am trying to handle two table view in one FXML Controller class. But it is giving me a Null pointer exception. How to solve this? The first TableView (studentTable) is working and second table(rTable) is not…
0
votes
0 answers

JavaFX 9 -JEP 253 Skin API and several problems

With the release of Java JDK 9, as stated by JEP 253, classes related to JavaFX skins of controls are moved from private package com.sun.javafx.scene.control.skin to the public one javafx.scene.control.skin. The reason for that change is developers…
Vin
  • 701
  • 1
  • 9
  • 30
0
votes
0 answers

NullPointerException on jnlp file execution on java 9

I am getting the exception below (endlessly) after run my jnlp app. I am using the java 9 early-access release. It was working on java-8 so I thought it is about the changes on 9. I could not find anything in java-9 issues. Any idea about the…
rdonuk
  • 3,921
  • 21
  • 39