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

Importing JFoenix library to SceneBuilder - javaFX

I downloaded library JFoenix.jar from official site for Java 8. I want to import that library to Scene Builder (Gluon). But everytime I try to import it, I dont have all elements from that library (it misses for example JFXButton, JFXTextarea…
Rocky3582
  • 573
  • 4
  • 7
  • 17
11
votes
4 answers

How to fix jfoenix modules with javafx 11

So I'm adding my requires for module-info.java and finally got my program to load but as soon as tab pane wants to load from jfoenix library this error is thrown. Caused by: java.lang.IllegalAccessError: class com.jfoenix.skins.JFXTabPaneSkin (in…
exceptionsAreBad
  • 573
  • 2
  • 5
  • 17
9
votes
1 answer

IllegalAccessException for JFXTextField with java sdk 12

I added JFXTextField in my javafx application but I got this error with no clue how to solve it class com.jfoenix.skins.JFXTextFieldSkin (in module com.jfoenix) cannot access a member of class javafx.scene.control.skin.TextFieldSkin (in module…
Mohammad Ismail
  • 103
  • 2
  • 8
6
votes
0 answers

How to create a JFXDrawer with sub Drawers That Slide From Inside Itself with JavaFX and SceneBuilder

As this is my first post here I will try to be as specific as possible I want to create a sub drawer of the JFXDrawer but I keep seeing the how the drawer appears and slides in. Here is a gif of what I mean: The drawer must be inside the other…
Rangel Stoilov
  • 106
  • 1
  • 10
6
votes
3 answers

Label to the left of checkbox with JFoenix in JavaFX

I am using the JFoenix library for JavaFX, and I wanted to display the check box label to the left of the box. From (default) : To: Looking at the available methods, this is the only thing that reads as it would work but it does not do anything…
Edv Beq
  • 910
  • 3
  • 18
  • 43
5
votes
1 answer

JavaFX is there anyway to set the two colors of a selected treeview item using css

Is there any way to change the color of a selected TreeView item, instead of the default red and blue color that shows when a TreeItem is selected
Tule Simon
  • 111
  • 6
4
votes
4 answers

Why can't i select JFXTextfield in scenebuilder and add it

JFTTextArea and JFXButton works but why not the JFXTextField? I have added foenix Library so I have got all the JFXTextField But i am not able to place JFXTextField in the SceneBuilder !! Here I have added the library in the project structure. If…
krishnaacharyaa
  • 14,953
  • 4
  • 49
  • 88
4
votes
1 answer

How can I change the color of a JFXSlider's thumb according to the color of the slider at the current position of the thumb on the slider?

I'm using a JFXSlider in JavaFX and I've used a linear gradient for the color of the JFXSlider's track (with CSS). However, I'd also like to change the color of the thumb to that of the slider for that position. I've used the following CSS for the…
Tech Expert Wizard
  • 365
  • 1
  • 6
  • 21
4
votes
1 answer

JavaFX change close tab button color using JFoenix framework

I'm using JFoenix to have google material like elements in my JavaFX application. I notice that in order to style JFoenix's elements with css, some commands are not the same as when using only JavaFX, so I'm not being able to style JFoenix's TabPane…
4
votes
1 answer

Java Fx arrow buttons

I am trying to arrange triangular buttons(like 3d arrow keys) around a circle. I tried to do via CSS with code below. but did not work out. It does not apply the settings to the button. I checked Jfxtras and jfoenix but could not find anything…
anupampunith
  • 147
  • 4
  • 12
4
votes
1 answer

JavaFX Alert on current screen

I have a problem using the Alert class in order to make a popup when pressing a certain button, for example when trying to change a variable, a popup would show up asking "Are you sure you want to change that?" and you could click on "Yes" or "No".…
John Szatmari
  • 375
  • 4
  • 11
4
votes
0 answers

Java 9 (JLink) fails when adding a 3rd party library

EDIT: YOU CAN GO DIRECTLY TO THE 2018-02-13 UPDATE AT THE END OF THE POST FOR UPDATED INFORMATION I can provide full source code as this problem has appeared in my open source project JMarkPad. Find it here The issue Basically: Building always…
Mayuso
  • 1,291
  • 4
  • 19
  • 41
4
votes
1 answer

Java error on CSS

Today java is going crazy with CSS styling, I think it could be a problem of dependencies, my dependences are: com.jfoenix jfoenix 1.11.0
4
votes
1 answer

How to change color on JFoenix's progress bar

I am trying to change the color of the progress-bar found on the JFoenix's library (http://www.jfoenix.com). I'm using Java and JavaFX, here is my sample css: .progress-bar { -fx-accent: #4059a9;} It should work, but instead it disables the…
3
votes
0 answers

SceneBuilder version 17.0.0 does not seem to work with JFoenix

I updated Scenebuilder to version 17 and some controls from a third party library (JFoenix)do not seem to work. I checked at least for JFXTextField and JFXSpinner. To reproduce, simply install Scenebuilder 17.0.0 and add jfoenix library version…
Jawad El Fou
  • 313
  • 2
  • 11
1
2 3
13 14