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

JFXDialog close on KeyCode.Enter, MouseEvent.Click

When i call JFXDialog, the dialog appear with message and button, all beautiful, than i can close it by pressing the button, but i can not close it by using key event on KeyCode.Enter JFXDialog is control unit of JFoenix in SceneBuilder. I have used…
0
votes
1 answer

Jfoenix 9 and fontawesome

I am attempting to import jfoenix 9 into scene builder. However, when I import a new jar file there are no components to import. Eclipse Version: 2020-09 (4.17.0) JDK 11.0.9 JavaFX Scene Builder 2.0
0
votes
1 answer

Styling JFoenix Tabpane

I am using JFoneix Library for creating a tabpane in javafx. Everything works fine however i am unable to remove the extended line connecting the tabs. How can i achieve that? Below Css has been used to design the tabpane #testDatesTab…
Viraj Shedge
  • 1
  • 2
  • 4
0
votes
0 answers

javafx : ui toggling for buton clicks

I have some button (JFoenix buttons) in my JavaFX program which is in left column below : I want to look them like clicked once they are clicked and toggle if others are clicked. How do I do this?
user11376749
0
votes
1 answer

JFoenix v8 or v9 not running in Intellij

I am using IntelliJ (2020.1). I have installed javaFX v-11.0.2 and it is working fine. I am also using Scene Builder v-8. As soon as I include any jfx_object in scenebuilder(like jfx_RadioButton etc.) and then run the main.java in intellij it shows…
0
votes
2 answers

JavaFX JFXDrawer not hidden completely when program starts

I'm trying to add a JFXDrawer to my program which I have succeeded in doing that however I have only one issue that I cannot figure out why its happening. When my program first runs the JFXDrawer should be completely hidden and shown when I click on…
0
votes
0 answers

Resizing childrens of JFXListVIew - JavaFX

I'm having an issue resizing the children inside of a ListView, the width property just doesn't want to resize. My structure goes like. -SplitPane -AnchorPane -ListView -AnchorPane <-- I'm having the problem here, width property just…
0
votes
1 answer

How to use .show() for JFXSnackbar in java fx

How to use .show() method on JFXSnackbar objects in javafx? when I use .show() method in my code the compiler shows me the message ".show() method is private in this library". I used jfoenix-8.0.8 version of jfoenix. Can anyone help out on this?
Emmanuel
  • 23
  • 4
0
votes
0 answers

How can I acces description of JFXTextField?

I need to see the description of the JFoenix component JFXTextField. This should usually be possible with CTRL + clicking on "JFXTextField" somewhere in the code. In this video it works, see 3:20 https://www.youtube.com/watch?v=MU0MCdk3i7s. However…
0
votes
0 answers

I got an error while using a component from jfoenix library

I have this project in javafx that I used to run and it would work perfectly. And then I wanted to add JFoenix. I had some hard time trying to make it work. and I wanted to test it so I added one JFXtextfield and I got this error Exception in…
sarah8909
  • 13
  • 3
0
votes
1 answer

ClassNotFoundException after JAR is exported

I am using JRE 1.9.0 (9.0.4+ 11). I'm trying to create an executable JAR. After I export to JAR with Maven and try to launch it, I get the following error: Exception in thread "JavaFX Application Thread" java.lang.NoClassDefFoundError: …
lovrodoe
  • 473
  • 8
  • 18
0
votes
0 answers

Error when trying to use jfoenix in scenebuilder

I'm trying to create some GUI with Jfoenix and I'm getting following errors when i run myprogram. I'm not understanding the errors .when i remove jfoenix jarfile myprogram run succesfully. please guide me. Exception in Application start…
0
votes
1 answer

Java JFXPanel: eventHandler returning button held instead of button pressed

I am trying to setup an event handler for a click, to added on a scene within a JFXPanel: scene.addEventHandler(MouseEvent.MOUSE_PRESSED, event -> System.out.println("Button pressed: " + event.getButton().name())); Strangely enough, if I hold the…
Guillaume F.
  • 1,010
  • 7
  • 21
0
votes
0 answers

How to mask & unmask characters of JFXPasswordField in Password field itself in JavaFX

I have designed this Login page in JavaFX. I want when I click on Eye button next to JFXPasswordField onPressed password should be shown in Text format in PasswordField itself. And when I released mouse button i.e. Eye button release Password…
0
votes
0 answers

Getting error when using Jfoenix 9 controls with JDK 13

Here is the code that causes the problem Here is the error Exception in…
Dustin Scott
  • 23
  • 1
  • 6