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
1
vote
1 answer

JavaFX problems replacing an open modal dialog

I have an application which sometimes shows a modal dialog, however after receiving an external message I wish to remove that dialog and replace it with another one, as the situation has changed and the first dialog no longer applies. However the…
Adam
  • 35,919
  • 9
  • 100
  • 137
1
vote
1 answer

Unable to import org.controlsfx

I'm trying to use CheckComboBox from package org.controlsfx.constrol.* and when importing the package I get error: Cannot resolve symbol controlsfx I found the API here: http://controlsfx.bitbucket.org/org/controlsfx/control/CheckComboBox.html I…
Alexandru Severin
  • 6,021
  • 11
  • 48
  • 71
1
vote
1 answer

ControlsFX 8.0.6 dialogs java.util.MissingResourceException

I'm a new user of ControlsFX and I have an issue that I don't understand: My code: Dialogs.create() .owner(mainStage) .title("Information Dialog") .masthead("Test masthead") .message("Test message") .showInformation(); And I…
Charly
  • 21
  • 2
1
vote
1 answer

javafx using AutoCompletion with database

i am trying to use AutoCompletion of controlfx to myy project and the code is TextFields.bindAutoCompletion( textField, "Hey", "Hello", "Hello World", "Apple", "Cool", "Costa", "Cola", "Coca Cola"); This code can only be…
user3829658
  • 159
  • 2
  • 7
  • 18
1
vote
1 answer

javafx how controlfx dialog box in FXML controller

how could i open a dialog box in fxml controller as it requires stage Dialogs.create() .owner(---what should i write here---) .title("Information Dialog") .masthead("Look, an Information Dialog") .message("I have a great message for…
user3829658
  • 159
  • 2
  • 7
  • 18
0
votes
0 answers

Styling ControlsFX searchableComboBox from controlsfx 11.1.2

My style classes: .searchable-combo-box { -fx-background-color: transparent; -fx-background-insets: 0; -fx-background-radius: 0; -fx-border-width: 0 0 1 0; -fx-border-color: #053445; -fx-border-radius: 0; …
0
votes
0 answers

How to directly show the TextEditor in SearchableCombobox inside a SpreadSheetView when entering characters?

I am working on a project where we use a SpreadSheetView component in the controlsfx library and we display a SearchableComboBox inside a SpreadSheetCell. Everything is working well expect when we go from a the previous cell to the next that…
0
votes
0 answers

Font screwed up on FXSampler app running under mac OS but not Linux

When I run the ControlsFX sampler app on mac OS the application seems to run fine but nothing is readable. Following the same procedure on my Linux machine works fine.
0
votes
0 answers

Usage of ControlsFX AutoCompletion SuggestionProvider

I am working on the implementation of the ControlsFX autocompletion/suggestion in a small JavaFX desktop application. I am unable to compile following code: SuggestionProvider provider = SuggestionProvider.create(list);…
Marko
  • 47
  • 5
0
votes
0 answers

JavaFX & ControlsFX - Autocomplete TextField with Hibernate

I am trying to implement within a small JavaFX desktop application a search textfield with auto suggestions like the famous search engines on the web. The auto suggestions are database driven in conjunction with Hibernate. For the textfield I am…
Marko
  • 47
  • 5
0
votes
1 answer

IllegalAccessError when using ControlsFX AutoCompletionBinding

I am getting an IllegalAccessError class org.controlsfx.control.textfield.AutoCompletionBinding (in module org.controlsfx.controls) cannot access class com.sun.javafx.event.EventHandlerManager (in module javafx.base) because module javafx.base does…
Marko
  • 47
  • 5
0
votes
0 answers

JavaFX, show Textfield suggestions through JSON

I'm trying to implement an autocomplete/suggestions functionality for a Textfield. I found out about controlsfx, in which the method 'TextFields.bindAutoCompletion(textfield, array)' comes in very handy. The one thing i could not understand, though,…
TrySoHard
  • 29
  • 5
0
votes
1 answer

Gradle run of app using ControlsFX GridView fails using same VM args as successful Eclipse launch config

In a non-modular app that uses ControlsFX's GridView (ControlsFX version = '11.1.1', JDK 17), if I run it in an Eclipse launch configuration with the VM arguments settings (in the (x)=Arguments tab) with the same --add-opens and --add-export…
pfurbacher
  • 1,789
  • 3
  • 15
  • 23
0
votes
1 answer

I'm getting an error once importing JavaFX in eclipse on Mac specifically with one import which is 'org.controlsfx.control.Noticifactions'

I'm getting an error once importing JavaFX in eclipse on Mac specifically with one import which is 'org.controlsfx.control.Noticifactions' what I've tried is to add and delete and re add the javafx sdk it is currently sitting under module path in…
Markyfor
  • 11
  • 4
0
votes
0 answers

How to integrate AutoCompleteBinding From ControlsFX to Javafx 19 project build with Maven

I am running into an error with my Javafx project where the AutoCompleteBinding class cannot be accessed because it does not export. I have found a lot of potential answers for this, but none of the solutions have worked. I know this exact question…