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
0
votes
0 answers

How to integrate AutoCompletionBinding from ControlsFX in a modular JavaFX 14 project build with Maven?

Currently I am testing some features of ControlsFX for fun and it works fine with the exception of the AutoCompletionBinding. It gives me the following module error, which is commonly known: Caused by: java.lang.IllegalAccessError: class…
anko
  • 1,628
  • 1
  • 6
  • 14
0
votes
0 answers

Change properties of graphic decoration ControlsFx

I am new in using the ControlsFx library and what i am trying to do is to adjust some properties of the ERROR_IMAGE from GraphicValidationDecoration. For example, I want to use the same image for validations, but with another positioning(default is…
d0plan
  • 13
  • 4
0
votes
1 answer

Java Swing Version of ControlsFx ListSelection View

I am looking for a Java Swing Version of 2 JLists that interact with one another. An "available" list and a "selected" list. You can move elements from one list to the other. I also would like to be able to move items in the "selected" list up…
oscar
  • 3
  • 3
0
votes
0 answers

Red border around HBow in StackPane Javafx

I have a little question about StackPanes. In my application I have a StackPane and in it there is a TabPane and a searching mask. I have painted it provisionally with Paint. The black frame shows a TabPane and the yellow frame shows the other…
Gregor
  • 409
  • 1
  • 5
  • 12
0
votes
0 answers

Provider org.controlsfx.glyphfont.FontAwesome could not be instantiated

When I try to use FontAwesome from ControlsFX package my app crashes with error: Caused by: java.util.ServiceConfigurationError: org.controlsfx.glyphfont.GlyphFont: Provider org.controlsfx.glyphfont.FontAwesome could not be instantiated In fxml I…
Denis Sologub
  • 7,277
  • 11
  • 56
  • 123
0
votes
0 answers

JavaFX: Mouse Hover event for a PopOver (ControlsFX)

I am having the following code to display a PopOver @Override public void start(Stage primaryStage) { try { Label lblName = new Label("Tetsing name"); Label lblStreet = new Label("Some street name"); Label…
Gregor
  • 409
  • 1
  • 5
  • 12
0
votes
1 answer

How to Tell How Many Items are Selected in a CheckComboBox?

I am using a CheckComboBox in my JavaFX project, it is part of the ControlsFX library. Essentially what I am trying to do is see how many Items are checked and then make a certain string. For example if only 1 item is checked I want the string to…
0
votes
0 answers

JavaFX project in NetBeans not showing "Libraries" folder. How do I add a jar file to my project?

I'm running NetBeans version 11.1 and a lot of the guides I read suggest adding my jar through the "Libraries" node in the project explorer, but I do not have that entry in the treeview. How do I add a jar (in my case controlsfx) to my JavaFX…
yha
  • 13
  • 2
0
votes
1 answer

JavaFX - SelectionModel of CheckListView

Problem Description I have a CheckListView with several items(checkboxes). I changed the Selection mode (code below) to allow multiple selections. However, when I select multiple rows, like in the picture below, and press SPACE, only the 'current…
KenobiBastila
  • 539
  • 4
  • 16
  • 52
0
votes
1 answer

NullPointerException in ControlsFX Notification

I want to show notifications to the user in my JavaFX application and chose the ControlsFX library for that purpose. However whenever I create a warning via: Notifications.create().showWarning();, I get the following Exception: Exception in thread…
Konrad Höffner
  • 11,100
  • 16
  • 60
  • 118
0
votes
1 answer

Set the default selected checkboxes in a ControlsFX CheckComboBox

I'm trying to set the default selected value for a ControlsFX CheckComboBox v8.0.3 with Java 8 I have tried the accepted answer in this question, but when I try CheckComboBox.getCheckModel().check(0); I get a class can not be referenced…
user10373534
0
votes
1 answer

controlsfx CustomTextField add ImageView click event is often not triggered

After adding ImageView, the imageview click event is often not triggered. Clicking ten times may trigger one or two times. I don't know why. enter image description here
laram
  • 41
  • 6
0
votes
0 answers

How to rotate values inside a cell in spreadsheet controlsfx when setting values from a list?

I tried using this approach for the Name label and it worked great. Now, I am trying to set values to other cells from a method using the code below: List values = new ArrayList<>(); values.add("test1"); …
James Buns
  • 47
  • 8
0
votes
1 answer

How to iterate values from List in setCellValue method of GridBase in spreadsheet controlsfx?

i tried doing this List values = new ArrayList<>(); values.add("test1"); values.add("test2"); values.add("test3"); values.add("test4"); values.add("test5"); for(String e : values) { for (int column = 0; column < 30; column++){ …
James Buns
  • 47
  • 8
0
votes
0 answers

Is there an equivalent method for getValueAt and setValueAt from jTable in spreadsheet controlsfx?

I need to get and set value in the spreadsheet cell. I am wondering if there is any equivalent method for getValueAt and setValueAt from jTable in spreadsheet controlsfx? Or is there any other way.
James Buns
  • 47
  • 8