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

How to format JFXTextField to add spaces on every two characters?

Hi I m trying to add a space formating fonctionality to my textfield (I m using JFoenix) my goal is to write 100000 as 10 00 00 and 1000000 as 1 00 00 00 here is my attempt but my result is reverse because the caret is losing position. public…
0
votes
1 answer

JavaFx: How to update hours on the basis of difference b/w two times?

I'm developing an application in JavaFx in which I'm using jfoenix library and Java 8 Time. In my application I've two TimePickers and one TextField. All nodes are initially set to 11:00 like this: What I want is whatever the difference between the…
Junaid
  • 664
  • 5
  • 18
  • 35
0
votes
0 answers

JavaFX Components not updating

I'm building a lobby that should display messages from players. Here is my lobby controller: public class LobbyController{ @FXML public JFXTextArea chatArea; @FXML public JFXTextField chatField; public void displayChatMessage(String…
Jaden Wang
  • 126
  • 1
  • 9
0
votes
1 answer

JFoenix JFXTreeTableView styles not working

I am trying out JavaFX and I used JFoenix library to incorporate material design in the application. All the other controls I added from JFoenix has the material look, but JFXTreeTableView does not have the material look shown in the project github…
Lahiru Chandima
  • 22,324
  • 22
  • 103
  • 179
0
votes
1 answer

Unable to update JFXSpinner visibility in JFoenix

I have a simple login window, and i want to show a JFXSpinner (like a loader) when i send the login request. For that, i have created a JFXSpinner object and initially i maked it invisible (setting the visibility value to false) and when the user…
M.Lamine Lalmi
  • 78
  • 1
  • 2
  • 12
0
votes
1 answer

How to center a popup?

So I am using jfoenix JFXPopup component for my popup. After finally getting the popup to show. I realized that the popup is displayed relative to a owner node you pass it. My question is there any way to display the pop up relative to the scene so…
Jon Ava
  • 13
  • 4
0
votes
1 answer

Change Size DatePicker JavaFX - Librarian JFoenix

I have a problem with date-picker librarian JFoenix. He is very a big how can reduce his size? [enter image description here] -- >> https://i.stack.imgur.com/UtXOj.jpg
hlalu12
  • 25
  • 4
0
votes
1 answer

Javafx Jfoenix input validation change error message color

As I mentioned in the title I need to change the color of the error message. By default it shows in black. Here is my code so far : RequiredFieldValidator rfv = new RequiredFieldValidator(); branch_name_txt.getValidators().add(rfv); …
Madushan Perera
  • 2,568
  • 2
  • 17
  • 36
-1
votes
1 answer

how to fix the error triggered by the use of jfoenix?

I added JFoenix to eclipse and SceneBuilder. It works in SceneBuilder but while compling the project leads to ClassNotFoundException javafx.fxml.LoadException: /C:/Users/Dell/eclipse-workspace/WDP-solver/bin/application/Sample.fxml at…
-1
votes
1 answer

How to show Android like toast messages in JavaFX (JFoenix)?

I saw that it was possible to make material design toast messages in JavaFX when I ran JFoenix demo. How can I implement that in my own app? (I'm a JavaFX beginner)
M. Gasimov
  • 166
  • 2
  • 5
-1
votes
2 answers

How to query data into JFXComboBox

I have been trying to query the data from my database and pass it through my JFXComboBox as value I tried wrapping it to a while loop and add every item to the JFXComboBox but it still does not show to value from my data. @FXML JFXComboBox
-1
votes
1 answer

Scene Builder preview is different than Actual output

I am getting Scene Builder Preview as following but when I run my project It's displaying different as following Application:- JavaFX using Jfoenix and GluonDesktop Designing using:- Scene Builder Development IDE:- intelliJ OS:- MacOS…
GreenROBO
  • 4,725
  • 4
  • 23
  • 43
-1
votes
2 answers

How to delete a CheckBox inside a ListView?

I am trying to refresh a JFXListView of JFXCheckBoxes. The code i am using works for every update case just the case when the update needs to remove a JFXCheckBoxe from the JFXListView. This is what i do for the delete part : ArrayList
Sami
  • 165
  • 4
  • 19
-3
votes
1 answer

No instance(s) of type variable(s) T exists so that integer conforms to EventType

Im not super advanced at Java but im learning how to use the Lambda expresions. But i have an error in my code that i cant seem to fix by googling it. Can someone point me in the right direction. @FXML private JFXHamburger…
mazeyarr
  • 19
  • 1
  • 6
-5
votes
1 answer

Java How to find the first login of the month

I am writing a program in which I have to figure out the first time a person has logged in to my JavaFX application in the current month. I have been trying to find out an answer but with no result. Kindly help thank you! Edit 1: This is the…
1 2 3
13
14