Questions tagged [controlsfx]

ControlsFX provides additional UI controls for JavaFX to complement the core JavaFX distribution.

ControlsFX is an open source project for JavaFX that aims to provide really high quality UI controls and other tools to complement the core JavaFX distribution.

298 questions
35
votes
2 answers

Include ControlsFX in Scene Builder?

Is it possible to include the component of Controls FX in Scene Builder ? If yes, can you tell me how, if no can you tell me if there're alternatives ?
Evans Belloeil
  • 2,413
  • 7
  • 43
  • 76
21
votes
2 answers

controlsfx Dialogs deprecated for what?

ControlsFX class Dialogs is marked as deprecated. What to use instead?
Dims
  • 47,675
  • 117
  • 331
  • 600
10
votes
1 answer

maven run and build with --add-exports

I try to run and my application with InteliJ and Maven on a Win 10 machine. If i run mvn clean javafx:run My GUI starts but if i use a Textfield from org.controlsfx.control.textfield.TextFields i encounter a problem Exception in thread "JavaFX…
Martin_1986
  • 151
  • 1
  • 1
  • 7
8
votes
2 answers

JavaFX PopOver From ControlFX

Can someone write a short JavaFX example of a Popover from ControlFX ? I haven't been able to get it to work. Any help is greatly appreciated!
melkhaldi
  • 899
  • 2
  • 19
  • 40
7
votes
4 answers

Update autoComplete JavaFx?

I'm currently working on a JavaFX project.I'm using Autcomplete TextField of ControlFx .Each time i add new rows in database table, it should to update Autocomplete ,i did this but my problem is showing double Context-Menu ,we can say double…
6
votes
1 answer

How to use BreadCrumbBar in ControlsFX (JavaFX 8)

I'm a Java beginner trying to use BreadCrumbBar from ControlsFX to make a navigation bar in a desktop application I'm making using JavaFX 8. I can't seem to be able to get the bar to work the way I want to, and searching for a tutorial online…
Jay Vaidya
  • 189
  • 1
  • 7
5
votes
1 answer

Gradle run with `--add-exports`

I got a java.lang.IllegalAccessError because of using a com.sun.* class in Java >9. The solution to this is to add --add-exports=javafx.base/com.sun.javafx.event=org.controlsfx.controls. I'm not sure how to add this to my build.gradle, but I put run…
piegames
  • 975
  • 12
  • 31
4
votes
1 answer

GridView only create Images when they would be visible

Hei there So I have the following problem. I have around 1500 images of playing cards. I want to display them in a "Gallery" where you could scroll through them. I was able to create a GridView with the ImageCell object and I was also able to add…
tctfox
  • 95
  • 1
  • 1
  • 4
4
votes
1 answer

How to run ControlsFX sample application using Java 11 and JavaFX 11

ControlsFX website says: If you want to play with the ControlsFX sample application, simply download the ControlsFX release and run the following command on the command prompt (be sure to replace the * with the actual version number of…
DfM
  • 529
  • 6
  • 19
4
votes
0 answers

ControlsFX - How to use updated fontawesome as glyphs?

I am using this code to create a glyph from the most recent fontawesome that is not available on controlsfx: InputStream resourceAsStream = getClass().getResourceAsStream("fa-solid-900.ttf"); GlyphFontRegistry.register("FA-SOLID", resourceAsStream,…
Thiago Sayão
  • 2,197
  • 3
  • 27
  • 41
4
votes
0 answers

Adding ControlFX TableFilter to TableView NoSuchMethodException error

I´m having an execution error when asigning a TableView to a ControlFX TableFilter Code ... Platform.runLater(new Runnable() { public void run() { for (int i = 0 ; i < columnNames.size() ; i++) { …
LazyTurtle
  • 131
  • 1
  • 3
  • 16
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
3 answers

How do I change the style of Autocomplete TextField (ControlFX)?

I have an Autocomplete TextField from controlsFX and I want to change the size and the color of each item. This is my part of code : TextFields.bindAutoCompletion(txt_numberOfCard_GENERAL, cardNumber);
citizen
  • 53
  • 1
  • 6
4
votes
1 answer

javafx CheckListView with custom objects to show particular property

I have controlsfx CheckListView in my application. I am displaying my custom objects (eg: Employee). I have a list of employee objects created and wrapped in an observable list already. Now i set the observable list to my…
Saravana Kumar M
  • 460
  • 9
  • 19
4
votes
2 answers

javafx NullPointerException with controlsfx Notifications componnets

I want to develop an application that uses controlsfx Notifications to show some notifications in system tray mode. In normal mode my application works well and notification can be shown successfully.but when I hide stage in system tray ,…
Hamid Mousavi
  • 223
  • 2
  • 10
1
2 3
19 20