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
1 answer

fxml LoadException only when using MouseEvent ! (Java + Scene Builder)

I have a problem, i have an event handler that should do some code, apart from the code, the event handler accepts a MouseEvent and the event that will invoke it is onMouseClicked event, Everytime i try to run the program i get an exception, if i…
Zeyad
  • 537
  • 2
  • 7
  • 15
0
votes
1 answer

java fx application gets stuck on action event

This is my overall code when i first run my application it works fine but when i reset it and tend to click on any of the buttons than the application gets stuck and not responding. After clicking reset i am unable to click any of the button preset…
fa zool
  • 21
  • 4
0
votes
2 answers

Problem updating the TextField field value

I have 4 text fields which I have already formatted to receive only integer values. I now want the "Capital" field to receive in real time the sum of all the other fields each time they have their value updated; I tried the binding but I do not…
0
votes
0 answers

JavaFX - TextArea reflection of Table cell (like in Excel)

I'm using JavaFX (With jfoenix) to build my application with SceneBuilder for designing. I want to build a textview reflection for a table cell, something like in Microsoft Excel (Allow the user to more easily edit the text) When the user will…
Idon89
  • 141
  • 4
  • 16
0
votes
1 answer

How do you iterate through the rows in a JFXTreeTableView?

I'm making a JavaFX project and using the Jfoenix custom library for nicer components. In a schedule table I have, I need the rows to become red if the start date of the event has passed already however I cannot find any answers online anywhere as…
faris
  • 692
  • 4
  • 18
0
votes
0 answers

How to move rows in jfxtableview

I am new to JavaFX and JFoenix. I went throw the following link and find out how to make a table using jfxtableview. https://github.com/jfoenixadmin/JFoenix/blob/master/demo/src/main/java/demos/components/TreeTableDemo.java In that example, columns…
Isuru Dilshan
  • 719
  • 9
  • 18
0
votes
0 answers

JavaFx: Filter boxes

I am implementing a filtering mechanism in JavaFx like an online shop's filter, so I can filter a table or a list of items by its properties using a filter pane where I have comboboxes/cehckboxes, sliders, etc. After I filter by on criteria, I…
Sunflame
  • 2,993
  • 4
  • 24
  • 48
0
votes
1 answer

Jfoenix JFXToggleButton does not provide switch appearance

I am learning how to use JFoenix with Java FX. I am using it from SceneBuilder so the only code I can show is that one :
hamdalaye
  • 107
  • 1
  • 12
0
votes
1 answer

How do I limit auto completion results in JFXAutoCompletionPopup JavaFX

ArrayList aniNames = new ArrayList<>(); I made connection with Database and stored 7K anime names in above ArrayList. JFXAutoCompletePopup autoCompPop = new JFXAutoCompletePopup<>(); for (int i=0; i
sygmus1897
  • 41
  • 4
0
votes
1 answer

Disable keyboard shortcuts in JavaFx

is it possible, to disable Ctrl+V shortcut in my JavaFx application ? its like in the textfields, user will not be able to copy text from somewhere and paste it using Ctrl+V. here's my controller class : package application; import…
Aman Gupta
  • 21
  • 4
0
votes
0 answers

JavaFx Jfoenix JFXpasswordField Exception

When i try to get password value from JfxpasswordField i get the exception bellow. After doing Research i came across a solution which suggested i use scene bulder 8.5 but unfortunately that didn't solve my problem. Kindly assists in resolving this…
Ian Nato
  • 963
  • 1
  • 14
  • 25
0
votes
1 answer

JFoenix JFXTreeTableView column heading alignment

I am writing a JavaFX application in which I am creating a table using the JFXTreeTableView component from the JFoenix library. By default, the column headings are center aligned. I would like the column headings to be center left aligned. I have…
0
votes
1 answer

Adding JFXButton into a JFXTreeTableView

I have tried to research about this, but could not find any examples. The examples I found were regarding normal TableView only. I could only create a JFXTreeTableView with an object and list out String. Any help would be appreciated! Thanks! I need…
zzdhxu
  • 379
  • 6
  • 22
0
votes
1 answer

How to edit hour and min cell in JFoenix time picker

Currently the color for the hour cell and min cell in my jfoenix time-picker is black. I would like to add a pointer and a different color whenever I hover over the two. Below you may see an image depicting the two. Would anybody know the css…
Roger
  • 597
  • 9
  • 32
0
votes
1 answer

Cant change color of validator (RequiredFieldValidator) JavaFX (JFoenix)

Please, help me change color of validator this advice didn't help me : .error * { -fx-text-fill: someColor; } and this just change color of prompt text: -fx-prompt-text-fill: yourcolor; Also, I treid this: (fxml)
Karina D.
  • 49
  • 1
  • 6