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

Is there a CheckBoxListCell equivalent for JFoenix so that we can use JFXCheckBox instead of the traditional one?

So I am currently using my JFXListView and trying to set several checkboxes inside of it using CheckBoxListCell. Originally I used this: listView.setCellFactory(CheckBoxListCell.forListView(new Callback
2
votes
1 answer

How to wait to show next toast (snackBar) with JFoenix

I have the following code that runs at program startup. It serves to show a toast informing which people are birthday on the current day, through an excel file. However, when there is more than one birthday person, he shows several toasts at once,…
2
votes
0 answers

JFXTreeTableView and Database SQL

How to add data from mysql in javafx using JFXTreeTableView? I have a method to add this in TableView I use this code. For my connection I use: static public ResultSet AllElement() { try { cnx = connecterDB(); st =…
Samer
  • 126
  • 1
  • 9
2
votes
1 answer

Using cell factory in JFXListView ignores JFoenix style

While using JFoenix control JFXListView I am unable to assign the material style to the list if I use a cell factory. How can I use a cell factory and at the same time specify the style for the JFXListView control? Here's my Minimal, Complete, and…
IS1_SO
  • 865
  • 3
  • 10
  • 16
2
votes
2 answers

How to trigger a JavaFX event when all ListView CheckBoxes are checked?

How can i trigger an event when all JFXCheckBoxes inside the JFXListView are checked and when all unchecked ? This is my code: @FXML private JFXListView li_se; private void Services(ActionEvent e) { li_se.getItems().clear(); for…
Sami
  • 165
  • 4
  • 19
2
votes
2 answers

cannot use intellij's scenebuilder with jfoenix

I have created a javafx project using java 9.0.4. The code can be compiled and works. and I can use the Internal sceneBuilder. but when I import an element from the Jfoenix 9.0.1 library I can't use the sceneBuilder anymore. I get this…
TheStudent
  • 41
  • 1
  • 6
2
votes
1 answer

(JFoenix) JFXTreeTableView how to display/group image + string in column?

I'm trying to get a JFXTreeTableView column to display both text and an image while continuing to use the tree grouping feature. I modeled my program after the demo and was able to get StringProperty based columns to work correctly, but now…
2
votes
1 answer

Customize jfoenix slider indicator

For the jfoenix slider, the indicator always changed with the slider and show the value accordingly. How can we customize the value in indicate, for example when slide the value from 0-4 we want to show "Small" on the indicate.
Kuku
  • 484
  • 8
  • 28
2
votes
0 answers

JavaFX Responsive Design

I have been searching for how to make a resposnvie application in javafx and by googling I found a way that just bind the child node to its parent size I dont't know whether it is correct way of making resposive design or not. For example to make a…
2
votes
1 answer

Wrap text in JFXTreeTableView cells

How can I wrap the text in JFXTreeTableView cells? My JFoenix TableTreeView column cell factory is created as shown below. // Set column cell factories and width preference for (JFXTreeTableColumn column : columnList) { …
user5164938
2
votes
1 answer

JFXDialog closes when clicking away

I'm using JFXDialog in my program to show that the program's main function is loading. I use the JFXSpinner to show this. The issue is that when the loading dialog is shown, it can be closed when clicked anywhere outside the dialogue. I tried using…
2
votes
1 answer

How to make JavaFX components adjustable with screen size

Here is a screenshot of original view of an interface built in JavaFX. Those buttons at the bottom look alright in this screen size. Original size window And this is the view when the window is set to fullscreen. Those buttons don't grow with the…
Manoj
  • 17
  • 4
2
votes
1 answer

How can I change the color of the JFXHamburger

I use the JFoenix Libary to develop a program with JavaFX. The default color of the JFXHamburger is black but I need white. I use the SceneBuilder to design the program but I can not find any property where I can change the color. Does anyone know…
user6590187
  • 55
  • 11
2
votes
1 answer

cannot resolve symbol import com.sun.javafx.scene.control.skin.TextFieldSkinAndroid;

I trying to run the demo app based on javaFX and jfoenix UI library on intellij, I have the jdk1.8.0_131 and jre1.8.0_131 version but I unnable to run, what Im doing wrong? this import throws me error: import…
leoLR
  • 462
  • 2
  • 6
  • 21
2
votes
1 answer

JavaFX, JFoenix - Button corners are colored, even with rounded corners

I have a JFXButton with a white background (instead of the "grey" default one), a transparent border and rounded corners. This is my style attribute : -fx-border-color: rgba(0,0,0,0.25); -fx-border-radius: 10; -fx-background-color: #ffffff; But…
Franckyi
  • 243
  • 3
  • 12
1 2
3
13 14