Questions tagged [jfoenix]

JFoenix is a JavaFX Material Design Library

JFoenix is an open-source Java library, that implements Google Material Design using Java components.

Webpage: http://www.jfoenix.com/

Github: https://github.com/jfoenixadmin/JFoenix

  • Maven dependency (Java 8):
<dependency>
    <groupId>com.jfoenix</groupId>
    <artifactId>jfoenix</artifactId>
    <version>8.0.8</version>
</dependency>
  • Maven dependency (Java 9+):
<dependency>
    <groupId>com.jfoenix</groupId>
    <artifactId>jfoenix</artifactId>
    <version>9.0.8</version>
</dependency>
210 questions
1
vote
1 answer

JavaFX - JFoenix alternative for JDK 13

Unfortunately I have the problem that JFoenix does not run with my Java version (13). After a short research I found out that this problem probably exists for a while (link). I don't know Java very well and I found the introduction to JFoenix very…
A456B123
  • 63
  • 2
  • 9
1
vote
1 answer

How to run a maven java fx project that includes jfoenix using javafx-maven-plugin

i was trying to create compile my application and create an executable file. as for now i see the best tool to use is javafx-maven-plugin. i couldn't get it to work, so i started with a basic code that is generated when creating a project according…
Eshaka
  • 974
  • 1
  • 14
  • 38
1
vote
1 answer

Create a runnable jar with Gradle and JavaFX that uses custom JVM arguments

Context: I'm building a modular (Java 11 - JavaFX 11) project on Intellij that uses Gradle 5.4.1, with some external libraries added to it (JFoenix, ControlsFX, ShadowJar...). Problem: The library JFoenix(a JavaFX library) doesn't really support…
1
vote
0 answers

JFoenix JFXTextField NullPointerException when added to my application

Whenever I add a JFXTextField to my application, when I try to compile it I get: java.lang.NullPointerException at com.jfoenix.skins.JFXTextFieldSkin.updateTextPos(JFXTextFieldSkin.java:109) at…
Doombringer
  • 596
  • 4
  • 19
1
vote
1 answer

Importing JFoenix in JavaFX Scene Builder 2.0 crashes the app

When I load the jfoenix-8.0.7.jar through "Import JAR/FXML file", the program refuses to load and becomes unresponsive. I have tried deselecting all and just importing one, but the result was the same: unresponsive. How can I import JFoenix and use…
Bytes2048
  • 344
  • 1
  • 6
  • 16
1
vote
0 answers

JavaFX Project running in Eclipse but not in Intellij Idea

I wanted to change my IDE (from Eclipse to IntelliJ) to work on a Project. It's perfectly running on Eclipse, but somehow it's not when i use IntelliJ. It's the same Code, same libraries (mysql-connector-8.0.15, sqlite-jdbc-3.27.2.1, jfoenix-8.0.8,…
bug
  • 21
  • 3
1
vote
0 answers

JavaFx JFoenix Tabpane not working correctly

i think i found a bug in JFoenix libary and searching for a workaround. I´m using Java 9 in a Maven Project in Eclipse (Windows 10 pro). My JFoenix version is 9.0.8 com.jfoenix
Raw
  • 461
  • 7
  • 15
1
vote
1 answer

JFoenix in Java 11

this is my pom.xml file for using javafx 11 and JFoenix 9 in my project. But when I compile and run javafx with maven it gets me this error: Caused by: java.lang.IllegalAccessError: class com.jfoenix.skins.JFXGenericPickerSkin (in module…
Seena Fallah
  • 43
  • 1
  • 6
1
vote
2 answers

javafx get result from thread with callable

I have a javafx app, and I want to surround some code with "waiting" feature. So my code can be Runnable and Callable. The problem is getting result from Callabe. I tried to play with: wait()/notify() Platform.runLater creating daemon threads by…
JeSa
  • 559
  • 4
  • 11
1
vote
1 answer

java.lang.IllegalAccessError with JavaFX and JFoenix

I'm trying to use the JFoenix library in Scene Builder. This is what I have so far: I added the Maven dependency: com.jfoenix jfoenix 9.0.8
Evgenij Reznik
  • 17,916
  • 39
  • 104
  • 181
1
vote
1 answer

Styling prompt text separately from text in JFXTextField

I am using JFoenix library elements. I have a simple login interface. I use JFXTextfields with a LabelFloat option. When the text field is empty the prompt text weight is normal. But when the text field is unfocused and non-empty I need the text…
Salsabil
  • 15
  • 8
1
vote
2 answers

adding custom css to button in JavaFX

I am trying to add some custom css to a button of mine, the css file is in the same folder as my testButton.java. this is my main/only class: import com.jfoenix.controls.JFXButton; import javafx.application.Application; import…
Lucas Vulpius
  • 23
  • 1
  • 4
1
vote
3 answers

How to create an executable jar which is executable (Maven-Jfoenix-Hibernate-IntelliJ) __ Can someone makes the subject resolve/close please

I try to generate an executable jar file from a project which use : Maven, JFX, JFoenix, Hibernate ... in IntelliJ I have tried many solution which we can found in different developer forum/website (StackOverflow included). Therefore no one works…
1
vote
0 answers

In JFoenix, how to add row in JFXTreeTableview by JFXTextFiled

I want to add row data in JFXTreeTableview by JFXTextFiled (JFXTreeTableview is not equals to TreeTableview, the method between them is different). But I don't know how to do. Here's my code. ("Record" class includes two attribute: "Input" &…
Cheng Benny
  • 11
  • 1
  • 4
1
vote
1 answer

SceneBuilder - Add custom component which relies on third party components

So this post: Custom FXML component (w/ controller) doesn't appear in SceneBuilder's "Import jar" dialog It says you cant import custom components which rely on third party components. But I cant believe this (this would be stupid) ... Im struggling…
Sebastian G.
  • 616
  • 1
  • 7
  • 25