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
0
votes
1 answer

How to add jFoenix to IntelliJ

I've tried a lot to add jFoenix to IntelliJ but I didn't succeed to do so. I saw many youtube videos and read posts from various websites but all didn't work. I'm using jFoenix regularly in my Scene Builder version 8.0.5 but still when I try to…
Mohamad S.
  • 199
  • 1
  • 9
0
votes
1 answer

Why is Gluon SceneBuilder Not Working Correctly

I have been doing a project and on IntelliJ with SceneBuilder 9.0.1. Yesterday, did a mini project on NetBeans 8 after 12 wasn't starting a new project for some reason. Once I was done on closing everything and opening my IntelliJ project, the fxml…
Kochez
  • 673
  • 4
  • 10
0
votes
1 answer

Adding JVM Option to maven javafx project

I'm using IntelliJ Idea, and trying to create an executable or jar of my app but I'm having issue with JFornix This is how I run the application from the IDE but running this from an executable or jar file returns the module java.base does not…
B-DK
  • 35
  • 6
0
votes
1 answer

JFoenix library does not have JFXTabPane support in scenebuilder?

Why doesn't JFoenix have the JFXTabPane in the imported .jar in scenebuilder? This means when I try to open my .fxml file with scenebuilder in intellij it gives me the .fxml file is not a FXML document error. Even after importing the entire…
DIRTY DAVE
  • 2,523
  • 2
  • 20
  • 83
0
votes
0 answers

JavaFX DatePicker: can it be Year and Month only, without Days?

I'm working on a project and i want to make my jfoenix date picker to pick only year and month is anyone knows how done this ?
0
votes
1 answer

JavaFX: Make Chips Editable in JFXChipView

I want to ask if it is possible to make a chip in JFXChipView editable once it has been set.
Syed USA
  • 11
  • 1
0
votes
1 answer

How to change the initial color of my JFXButton?

I'm working on my database project, I have added 2 JFXButton one for exit and the other to minimize the application, I have added CSS style as transparent, but when it appears on the screen one is having a different color from the other although I…
Mayar Imad
  • 11
  • 2
0
votes
0 answers

Alternative to add-exports VM option

I'm trying to run and help develop a Java project (https://github.com/goxr3plus/XR3Player) with Java-12 and Maven. According to the README it requires multiple VM options to be set. This one is representative: --add-exports…
Helge
  • 145
  • 9
0
votes
1 answer

module java.base does not "opens java.lang.reflect" to module com.jfoenix

Before start describing how I'm getting this error, here is some important information: It is essential the usage of the module-info.java in my project since jpackage won't work without using it. I'm using SDK 14.0.2 (this is the minimum version…
FARS
  • 313
  • 6
  • 20
0
votes
0 answers

JFXDatePicker not working when program is exported to a jar file

I have a application which uses two JFXDatePickers from JFoenix. They work perfectly when running from Eclipse but do not work when I export the program to a JAR file. They still return the text that is set by default but when I try to select a date…
Nicolas
  • 1
  • 1
0
votes
2 answers

JavaFX jfoenix runtime error (JFXDatePicker)

I am developing an application with JavaFX but I have an error when I try to load an fxml interface containing a JFXDatePicker. The other interfaces load without problem Here is the error message: Caused by: java.lang.IllegalAccessError: superclass…
0
votes
0 answers

How can i add JFoenix to JavaFX 15?

I am new to this JavaFX and I needed to add JFoenix jar file to my JavaFX project but i didn't find suitable version of JFoenix for JavaFX 15. Is there any way to add JFoenix 9 to JavaFX 15? or alternative for JFoenix? I am using the following…
Pavan Kalyan
  • 19
  • 1
  • 1
  • 6
0
votes
0 answers

Search For library in maven repository is not working

Hello Guys please I need a little bit of help, I am trying to download the jfoenix library from the maven repository in intellij but when I add the "jfoenix" keyword to the search box, it Doesn't work! But when I add the keyword "spring" it works.…
Akani
  • 1
  • 2
0
votes
1 answer

how to change the float value to rating stars (rating of jfoenix ) representation in tableView columns?

I m trying to change the representation of the rating column of my tableView ( please look at picture 1 ) into rating stars of jfoenix library for better representation here is the code (in Controller) of my table view : @FXML public void…
user11874369
0
votes
2 answers

Limit TextField's text area (margins/padding)

I'm using some TextFields in JavaFX, and I want to limit their area of shown text. I already limit their maximum number of characters, but in some cases, the maximum char number typed is larger than the Textfield's width. As you see, the text is…
Alex
  • 149
  • 1
  • 1
  • 7