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
0 answers

Changing Header Of JFXTabPane

I am working on a JavaFX project and I am creating an UI based on Google's Material Design patterns. I use a library that includes a lot of components based on this design, named JFoenix. Basically I have a JFXTabPane with different tabs, and in…
1
vote
1 answer

JFoenix Drawer .hide(); and .drawer(); functions are not working

I am tired on this point, JFoenix Drawer .hide(); and .drawer(); functions are not working try { VBox box = FXMLLoader.load(getClass().getResource("/chatroom/ui/chatingwindow/DrawerContent.fxml")); drawer.setSidePane(box); …
snishalaka
  • 1,738
  • 1
  • 9
  • 17
1
vote
0 answers

How to set row height in jfxlistview according to line numbers and add vertical ellipses in at top right corner?

I am making a name list which contain few lines in a single row using jfxlistview and when click a row the data in that row shows the info of the selected name. Now I managed to do that part but i have faced a prob if the info of the selected name…
1
vote
0 answers

JFXTreeTableView not show all columns

I was using JavaFX TreeTableView , both vertical & horizontal scroll bars works and I can see all the table's columns when scrolling horizontally. now I update same table using JFXTreeTableView of JFoenix...I can see some of the columns (fit the…
Mohd
  • 191
  • 3
  • 14
1
vote
2 answers

JFoenix: JFXTabPane tab-selected-line color and width

I work with the JFoenix-Library and have a problem. How can I change the width of the tab-selected-line. I tried the following code but it doesnt work: .jfx-tab-pane .tab-selected-line { -fx-border-color: green; -fx-stroke-width: 3px; } I can set…
1
vote
0 answers

How to set default state of Drawer(JFoenix library) as closed or hidden?

Screenshot I am trying to make a simple JavaFX application using the JFoenix library in which I have used the JFX Drawer and a JFX Hamburger component to make a material style side drawer as shown in the screenshot. But the problem is that the…
maximus
  • 7
  • 2
1
vote
2 answers

JavaFX JFoenix - I can't change the color of the Tabs Selection Bar

I'm using the 1.7.0 version of jfoenix, but i can't change the color of the Tabs Selection Bar :( Everything works except changing the Tabs Selection Car color. Can anyone help me with this. Here is the code i'm using: .jfx-tab-pane { -fx-padding:…
Pedro Figueiredo
  • 457
  • 5
  • 13
1
vote
1 answer

Creating a JFXDialog using an existing fxml script

I'm trying to show a loading popup when my program is running tasks in the background. I'm using Jfoenix for my program to give it the material design look, and I'm trying to use JFXDialog to display the loading popup. I created a popup in a stack…
1
vote
1 answer

JavaFX ToggleButton is not visible but registered as Children

im creating a JavaFX based Discord Bot where you can choose which Guilds are allowed to listen to Commands, and it creates as many ToggleButtons as the amount of Servers the Bot is connected to. Here is my Method: public void generateButtons() { …
SmooK
  • 47
  • 6
1
vote
1 answer

Style a regular javafx button and text-field?

I'm using Time-4j-ui library, and somehow it includes a built-in Button and a text box which is Ugly and ruins all my design, In my project I'm using Jfoenix material design components, and this built-in user-interface completely ruins my design,…
Shaheen Zahedi
  • 1,216
  • 3
  • 15
  • 40
1
vote
2 answers

How to use JFoenix RequiredFieldValidator to enable/disable form JFXButton?

I'm using JFoenix to create a login form, my form do have a text field and a Password Field What I'm trying to do, is to disable/enable automatically the "Connecter" button according to the validation of the two field below my…
0
votes
0 answers

Why isn't some components on JFoenix not working in scene builder?

I just started learning java gui and I chose to learn javafx. I use intellij for my java program, I have java jdk 20.0.1 and open javafx sdk 20.0.1 also scenebuilder 20.0.0. The Jfoenix jar I downloaded was 9.0.10 jar. When I downloaded Jfoenix and…
0
votes
0 answers

JFXDatePicker not appearing in Scene Builder with JFoenix 9.0.10 and Scene Builder 19.0.0 (Java 20), despite other components working

"I'm using JFoenix 9.0.10 and Scene Builder 19.0.0 for a Java project, but the JFXDatePicker component is not showing up in Scene Builder's search bar. I've already imported the JFoenix library and refreshed the component list, but to no avail.…
Om Damahe
  • 1
  • 1
  • 1
0
votes
0 answers

I can´t see the jfoenix elements, when i am running my application (Intelij and Maven)

I have used a jfoenix.jar file to add the Jfoenix elements to my Scenebuilder, then I went into Intelij and added this to the pom.xml: com.jfoenix
0
votes
0 answers

Error with JFXTextField from JFoenix: module java.base does not "opens java.lang.reflect" to module com.jfoenix

I'm using IntelliJ and Gradle with JavaFX and wanted to test the JFoenix package (https://github.com/sshahine/JFoenix). If I drag and drop a JFXTextField with the SceneBuilder in my scene, the application doesn't start anymore. This problem occurs…
Enrico
  • 415
  • 1
  • 10