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

SceneBuilder cannot open FXML file that uses JFoenix elements

While trying to open FXML file in SceneBuilder, exception is thrown. Is there a way to fix this? Java: 11.0.19 2023-04-18 LTS SceneBuilder: Version 20.0.0 Date: 2023-05-08 14:08:52 JavaFX Version: 20.0.1 Java Version: 20, OpenJDK Runtime…
horvoje
  • 643
  • 6
  • 21
1
vote
0 answers

Jfoenix Elements is not working on my Javafx project

Made a project with Maven with Javafx 17.0.1. I have tried adding the Jfoenix Dependencies to my pom.xml download the sources and refresh the project but when adding OpenJDK 17.0.1 @FXML private JFXButton JFoenixbtn; it don't know the right…
MorsH
  • 11
  • 3
1
vote
1 answer

Load custom components in scenebuilder 17

We are working on Javafx project which was working fine on Java8. Recently, We have updated the project with Java17. We are able to resolve the issues for the IDEA. Seems like after Java 9+ they have strictly encapsulated all classes. To use this we…
Saad Khan
  • 180
  • 2
  • 12
1
vote
0 answers

How to integrate Jfoenix with eclipse

Hi everyone I'm new to JavaFx, I recently started learning it and I managed to include it in eclipse without any problems. The only problem I am facing right now is JFoenix library. Whenever I add this latter to the module path and import some…
1
vote
0 answers

How to use Combo box in Generic Editable Tree Table Cell in jfoenix

I'm working on a project with jfoenix, I've made a table view and I want to make it editable. For one Of the Columns I need to limit the user while editing like the user can edit but just can choose from the combo box but I don't know how to do…
1
vote
1 answer

Scene builder has a problem with rendering JFXTextField component from JFoenix library

I'm trying to add JFXTextField component to my scene by dragging the component, but it doesn't work (it always comes back). When I double click the component, it gets added to the list, but then my scene in scene builder will change to: "Content of…
anon
  • 21
  • 1
1
vote
1 answer

JFXDatePicker change style of current date

Pop-up calender of JFXDatePicker showing current date in "default colour" and rest of dates are in black color. As per my application, I configured default color as blue. So not able to differentiate blue and black much. So I want to change the…
Raashith
  • 155
  • 3
  • 16
1
vote
0 answers

Cannot able to drag and drop JFXTimePicker control

Recently I downloaded the jfoenix(version 9.0.10) library. It worked fine so far. But when I tried to drag and drop JFXTimePicker in the java scene builder, its not working. I am using the latest version of scene builder and intellij. How can I fix…
swarna
  • 31
  • 6
1
vote
0 answers

How to build executable JavaFx Jar File

Building a JavaFx jar file with interllij Ultimate with JDK 16 and Javafx 14. I found a video on yutube which you have to create a different java class without extending it to Application and creating an artifact using that class as the main before…
1
vote
1 answer

Changing JFXDatePicker / DatePicker starting weekday

I'm using a JFXDatePicker (material design DatePicker) in JavaFX and I want to change the starting day of the week in the calendar that pops-up when I click the DatePicker. Currently, the starting day of the week is Sunday (S M T W T F S), but I…
Alex
  • 149
  • 1
  • 1
  • 7
1
vote
2 answers

Add JavaFX documentation to VSCode

I want to import the JavaFX docs to VSCode so that it displays the docs in tooltips like with other methods. The link to JavaFX docs is- https://openjfx.io/javadoc/15/ But I don't know how to add it the VSCode I want the method docs to be visibly…
Nishesh Garg
  • 11
  • 1
  • 5
1
vote
0 answers

Errors when trying to extract jar file with java 8 from intellij

I am trying to extract a jar file with java 8 from IntelliJ using libraries of fontawesomefx-8.92, jfoenix and SQLite-JDBC-3.27.2.12, with this method : File > Project Structure > artifacts > Add; and if I run the jar file from out > artifacts >…
1
vote
0 answers

JFoenix incorporation with Eclipse

I have been trying to use Jfoenix for quite some time now on eclipse but it never seems to work. I would really appreciate if any one here could help me. My JDK is 12.02, SceneBuilder Version is 8.5.0, Eclipse 2019-12, java version 8 update 261 in…
1
vote
0 answers

java.lang.IllegalAccessError with JFoenix and JavaFX in Java 11

I am trying to use com.jfoenix.controls.JFXChipView along with JavaFX in Java 11. This is my maven dependency: com.jfoenix jfoenix 9.0.9
kaiffeetasse
  • 481
  • 1
  • 8
  • 18
1
vote
0 answers

How to export a javafx maven project with jfoenix components using the javafx-maven-plugin

I have been working on a javaFx project with maven. exporting this project to an executable file seems to very hard. though my research i found that javafx-maven-plugin is the tool for that and with the help of my last question i figured out the…
Eshaka
  • 974
  • 1
  • 14
  • 38