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 button pressed issue

I need that when I press a button, the button color changes, Im making the interface in scene builder and style it with fx css. I tried: .botones:hover { -fx-background-color: red; } .botones:pressed { -fx-background-color:…
JAram
  • 3
  • 7
0
votes
0 answers

get VBox to NOT auto-resize children when elements are added

So I have a scrollable message system using this structure: The HBoxes contain a message, there are multiple. The problem is, when more HBoxes/messages are added, they are shrunk to one line, and the labels inside them are overrun. I don't want…
All Meta
  • 35
  • 7
0
votes
2 answers

How can I remove stage buttons in JFX

I've tried a lot to remove the stage buttons in my JFX project frame. I'm using a decorator to fresh up the design. I only want to remove the maximize, resize and minimize buttons. The close button should not be removed. Can you give me a tip, how…
Melowski
  • 21
  • 7
0
votes
0 answers

Java ArrayList print via printer
I've been trying to find something on the web but was unable to find anything that can help me with my issue. I need to send content of JFXTreeTableView to printer to print it. Any help appreciated. I can even use ArrayList as a data source…
Volkeee
  • 93
  • 9
0
votes
1 answer

how to blend JFXNodeList from the code

I am having a JFXNodeList How can I close (blend the JFXNodeList), from my controller java code, if a user click one button…
Toumi
  • 2,925
  • 4
  • 37
  • 31
0
votes
0 answers

Listen to a primitive variable change in different JavaFx controllers

I am working on a JavaFX, Jfoenix desktop application where I have multiple FXML views. The application is supposed to recognize in real-time when a specific embedded device was connected or disconnected. Unfortunately, there is no interrupt…
John Szatmari
  • 375
  • 4
  • 11
0
votes
1 answer

Thread for controlling components in JFXDrawer

I'm using a JFXDrawer, SalesDrawer containing a VBox and 2 JFXButtons inside it. The contents of the JFXDrawer have a separate controller, SalesDrawerController.java. The controller file, SalesController.java that contains the JFXDrawer consists of…
SaberSz
  • 115
  • 1
  • 10
0
votes
2 answers

JavaFX desktop app won't start in a specific machine (works in others)

I have a java desktop app using Swing which I rewrote in JavaFX using SceneBuilder. The Swing app works fine on all users machines (35 Machine). After rewriting the app in JavaFX, on one specific machine the app won't start and gives the below error…
FullOfLife
  • 3
  • 2
  • 7
0
votes
1 answer

Issue with JFXSlider and ScrollPane

I'm having an issue with a JFXSlider and a ScrollPane. Since I don't like the default style of the scrollbar, I'm using a JFXSlider to move the ScrollPane up and down. slider.valueProperty().addListener((ChangeListener) -> …
KeepoN
  • 137
  • 1
  • 11
0
votes
1 answer

JavaFX : No error loading fxml but whitescreen

My project has no compilation error. but still my program open up and stay white instead of using the css file. I tried to add the stylesheet manually as you can see in the sample of code below. Anyone got an idea ? Set up : Java…
0
votes
1 answer

Adding JFoenix JavaFX Element to FXML won't launch after compile

I am using Netbeans 8.2 and I am building a simple FXML project. Starting from scratch and a fresh JavaFX FXML Application, Cleaning and Building works fine and Launching the example file from the /Dist/ Folder works perfect. However, The minute I…
0
votes
1 answer

TreeTableView cells does not get updated when underlying data changes

I am writing a Market Watch program which displays live quotes in a JFXTreeTableView, but when I update the data in the ObservableList, it doesn't get updated in the JFXTreeTableView. The changeDataDemo() method is actually tracking changes in the…
0
votes
1 answer

How to get a value from a selected row in jfxtreetableview

I have searched all over the internet but couldn't find any easy way to get selected value from a jfxtreetableview like good old jtable anyone knows about it? I have created a jfxtreetableview and populated data. JFXTreeTableColumn
0
votes
2 answers

Errors when trying to use JFXPasswordField Jfoenix JAVA

I'm trying to create some GUI with Jfoenix and I'm getting following errors when i run them. I'm not understanding the errors and i have spent the whole day please guide me.
Nouman Arshad
  • 101
  • 1
  • 2
  • 10
0
votes
1 answer

Change Jfoenix TabbedPane Header Color

How to change jfoenix tabbedpane default header color? jFoenix TabbedPane Header Only tabs color changes. Colored Tabs
codejava
  • 13
  • 6
1 2 3
13
14