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

Wait for JFXSnackbar before closing window

a small extract from my code below. I want to wait until the jfxsnackbar has shown the message before closing the window. Currently it just closes it too fast without showing the message. boolean userCreated = true; JFXSnackbar snackbar = new…
1
vote
1 answer

JavaFx JFoenix horizontal JFXNodesList

I am trying to make the node list open horizontally but it open as vertically. Is there anyway to achieve this? Thanks. JFXNodesList buttonsNode=new JFXNodesList(); JFXButton val1=new JFXButton("1") ; JFXButton val2=new JFXButton("2") ; JFXButton…
anupampunith
  • 147
  • 4
  • 12
1
vote
1 answer

JFXButton Rippler Fill Color Can't Be Change

I have a problem with styling JFXButton from this library : jfoenix.com I would like to change the JFXButton Rippler Fill Color, when user click a button. But it's not working. I checked on the internet. But a solution could not be found. Have you…
SUDESH KUMARA
  • 891
  • 9
  • 18
1
vote
1 answer

OutBounds Exception on Filtered ViewList

im working on a small application that fetches information from a DB and displays it in a ListView , then I select elements of the list and move it to a second list, I must be able to add and remove elements between list. I have also implemented…
Ccortina
  • 587
  • 14
  • 31
1
vote
0 answers

How to make animations with java fx without stops or lag

I'm developing a system with the JFoenix library, and I'm using some buttons with wave animation. But when I use a button to open a new window, or load a list for example, the animation "stops" briefly while the screen loads, or the list loads. I…
1
vote
0 answers

javafx JFoenix errors

I have meet errors when I run the demo. I use JDK 9.0.4 and jfornix-9.0.4. The Error occurs when instantiating an object, for example: JFXToggleButton toggleButton = new JFXToggleButton();. The output as follows: Exception in Application start…
孙海宁
  • 11
  • 1
1
vote
1 answer

Does JFoenix have an equivalent for JavaFX Spinner

I am just wondering if JFoenix has an equivalent to JavaFX Spinner since their spinner is different? If not would you know any css to convert it to any modern version?
1
vote
1 answer

Can't run JavaFX application with JFoenix lib

Here i have my artifact output layout. I included jfoenix lib so i don't have any problems with running my project. Build was successful. Now i have these files in my artifacts folder And when i run my jar file i still get this output Exception in…
syd
  • 197
  • 12
1
vote
2 answers

How to edit JFXSpinner inner text

Is it possible to change the way the JFXSpinner progress text is displayed. I don't want it to be displayed as a percentage but as an index between 0 and 1.
TheZopo
  • 304
  • 2
  • 12
1
vote
2 answers

How do I make a JFoenix JFXToggleButton that looks like a ToggleButton not a switch?

Using the JFoenix library, is there a way to have a toggle button that is a rectangle like the normal JavaFX ToggleButton? The JFXToggleButton looks more like a switch—and that's not what I'm looking for.
Brad Turek
  • 2,472
  • 3
  • 30
  • 56
1
vote
0 answers

JFoenix a Bug maybe with javaFx control

moved my project to JDK9 ,I started get this exception which I beleive is a bug .. in my project I have a JFXDatePicker , in my module-info.java, I requires 2 packages "requires javafx.controls; " & the JFoenix "requires com.jfoenix;" for the…
Mohd
  • 191
  • 3
  • 14
1
vote
0 answers

JFoenix RecursiveTreeObject inheritance

I have a few DAO object with a parent one - BaseDAO. I share it between 2 modules of the project - client and server. At some point I bumped into JFoenix and decided to use but then I've met a problem. To use JFXTreeTableView you need to make a…
Volkeee
  • 93
  • 9
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

Sort javaFX Tree table view items

I'm having troubles sorting my JFXTreeTableView (from Jfoenix). I have created an object named ScanModel which extends Jfoenix's RecursiveTreeObject. One of the many properties I'm having there is: private IntegerProperty id; Here are…
nafarkash
  • 359
  • 6
  • 24
1
vote
1 answer

javaFX- how to place a textarea in the bottom of the screen

i am a beginner in javafx, so i am working on a chat app UI. i want to place a textarea in the bottom of the screen, and must stay in this position whatever the size of the screen. this is my FXML file:
Badr At
  • 658
  • 7
  • 22