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

JavaFX using Gluon SceneBuilder InvocationTargetException

I was making an application for a buddy of mine and finished the design for the login screen and saved it in eclipse. This is a .fxml file by the way, and it throws an InvocationTargetException whenever I try to run the main method. Here's the stack…
Param Oza
  • 3
  • 2
0
votes
1 answer

Cant make JDialogBox of jfoenix library using scene builder

Can somebody explain how to use Dialogue box from above library through XML. Without coding the dialog box using java, Can't I just design it from scene builder by dragging and dropping component. I have already tried it but when I run the…
RAINA
  • 802
  • 11
  • 22
0
votes
1 answer

How to show a dialog with JFoenix - JAVAFX

I'm trying to show a simple dialog on the screen with JFoenix, however, every time I try to show, I get an error,"The JFXDialog container is not set" I know this means that stackPane was not shown, so I would like to know how to initialize StackPane…
0
votes
2 answers

JavaFX - how to center JFXpopup on stage and dynamic size of popup

I want to make a JFXpopup at the center of the screen with a dynamic width & height. This is what I currently have: This is the application's first look. To open the popup I have to click an item in the contextmenu: and after that you get to see…
Oguzcan
  • 412
  • 6
  • 20
0
votes
0 answers

Java Calendar View strange behaviour

I'm using a JavaFX calendar widget from JFoenix but for a few days, I get an extraordinary display output. There are strange symbols shown, but I get this error only on my system. When sending the jar to other PCs it works fine. Maybe someone has an…
Tobi F
  • 15
  • 4
0
votes
1 answer

Fitting an ImageView into a TreeTableCell

I am using a JFXTreeTableView which has a column which displays images. The column is constucted like this: JFXTreeTableColumn statusColumn = new…
Bobface
  • 2,782
  • 4
  • 24
  • 61
0
votes
1 answer

Refactor JFoenix JFXDialogLayout alert notification code to a simpler form so that it can be reused for other classes

how can I refactor the following code so that only the code in deleteButton.setOnAction(deleteEvent -> {//only this code varies} changes. Everything else will stay the same but the block of code in the lambda expression varies from time to time when…
Roger
  • 597
  • 9
  • 32
0
votes
0 answers

JFXTreeTableColumn problems with date field in the JFoenix Library

It will not let me compile because it says that I can not cast the data, this is the error that I get when compiling my project: enter image description here When removing the column from the Date, my project works with all the fields in the Table
Yeikel200
  • 35
  • 1
  • 7
0
votes
1 answer

JFXButton: Cannot resolve symbol

I am attempting to make my first GUI in JavaFX. This is what I've done so far: Main: package ZVCVolkel_GUI; import javafx.application.Application; import javafx.fxml.FXMLLoader; import javafx.scene.Parent; import…
MrEmper
  • 225
  • 1
  • 4
  • 18
0
votes
2 answers

How do you change the color of the bullet points in a JFXPasswordField?

I am using Scene Builder to make a login screen. My PasswordField's background color is gray and I would like the stars that come up when you write something to be white. They are currently black even though I set the text and prompt color to white…
Dominic
  • 322
  • 1
  • 8
0
votes
1 answer

TreeItem value is null, throwing Null Pointer Exception

I am using JFoenix library to build my UI. I have a JFXTreeTableView mapped through FXML in my controller class: @FXML private JFXTreeTableView table; The data I use to fill in the columns is stored in ObservableList which does not…
Deviver
  • 3
  • 3
0
votes
1 answer

How to change the box border of JavaFX CheckBox?

How can i change the box border color and radius of JFXCheckBox ? (i am using the JFoenix library) Is there any cool JavaFX libraries for CheckBox except JFoenix ?
Sami
  • 165
  • 4
  • 19
0
votes
1 answer

JavaFX layout moves when button is clicked

This is a gif of my problem: As you can see, the button resizes (elevates? and it moves it's outer layout with itself. This is the hierarchy: StackPane Group // for other content Group // The make hbox "wrap-content" HBox // For…
andras
  • 3,305
  • 5
  • 30
  • 45
0
votes
0 answers

MultiThreading in Jfoenix ChipView suggestions

I am implementing suggestions with ChipView from the Jfoenix library and it works just fine when using a small list of data but with a big amount it blocks the UI. I want to implement Multithreading to resolve this problem but coudn't figure out how…
ligand
  • 27
  • 8
0
votes
1 answer

JFXDialog extra space around the content

As you can see from the picture after I set my content Node there is all this non red space around it. How can I remove it? I've been messing with for an hour with no luck. Library is called JFoenix.