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

Which version of controlsfx support with OpenFX and OpenJDK 11?

I'm using OpenFX 11, OpenJDK 11 and controlsfx 8.40.15 library Getting Caused by: java.lang.NoSuchMethodError: 'java.util.Iterator javafx.stage.Window.impl_getWindows()' while execute following code. Notifications notifications =…
Hemlata
  • 367
  • 1
  • 3
  • 13
1
vote
1 answer

Validator for ListView Selection Model?

I'm trying to make it so a selection is required in order to proceed and I am wondering if it is possible to achieve this using the ControlsFX Validator and ValidationSupport. public static void test(ValidationSupport support, ListView listView) { …
Quinton
  • 19
  • 3
1
vote
1 answer

Can not create clearable textField using ControlsFX

I have created TextField using Scene Builder but when I tried it with KeyEvent but it doesn't work. public class FXMLDocumentController implements Initializable { @FXML private TextField searchPatient; @FXML void…
Swapnil
  • 115
  • 1
  • 12
1
vote
2 answers

JavaFX : Mouse events for a PopOver Window (ControlsFX)

I am having the following code to display a PopOver (Custom PopUp by ControlsFX - mvn repo) public class JavaFXApplication35 extends Application { @Override public void start(Stage primaryStage) { try { Label lblName =…
user3164187
  • 1,382
  • 3
  • 19
  • 50
1
vote
0 answers

JavaFX How to refresh tableview items but keep cell states for existing items?

DEMO: https://github.com/CorellianAle/so_tableviewexpandercolumn GIST: https://gist.github.com/CorellianAle/0f6844edc759a766400b98dda690dfbe I have a JavaFX application that uses TableView to show list of employees that is stored in the database. I…
CorellianAle
  • 645
  • 8
  • 16
1
vote
1 answer

Manually trigger dropdown of CheckComboBox with JavaFX

I have a CheckComboBox that I populate with data I grab from a website with the following method. public void getCompanies() { // This method is called every time the user types a letter in the URLText box. // Grab data from the…
wanderer0810
  • 400
  • 1
  • 7
  • 20
1
vote
1 answer

ControlsFX and Java 11 cannot run sampler

Despite reviewing How to run ControlsFX sample application using Java 11 and JavaFX 11 and How to run ControlsFX Java 11 and JavaFX 11 as well as other suggestions on the web, I still can't get the ControlsFX samples app to run in Java 11 (OpenJDK…
Ben
  • 25
  • 1
  • 5
1
vote
0 answers

How to display a PropertySheet on two columns

I need to display a Propertysheet (ControlFx) on two columns like this property1 value1 property4 value4 property2 value2 property5 value5 property3 value3. The first idea was to use two property sheets. But we don't like it. So we…
Virginie
  • 11
  • 3
1
vote
1 answer

How to change the color of the inner slide in a RangeSlider (JavaFX)?

I'm trying to change the css of the RangeSlider I am using this maven dependency in integtare it in my FXML file org.controlsfx controlsfx
ninja007
  • 53
  • 5
1
vote
1 answer

JavaFx ToggleSwitch On Off Syncronization

I am using controlsfx ToggleSwitch to simulate an on/off button for serial port connection. The problem is when I try to open a port that is already in use. I set it to false and this triggers the event again. So it calls different if block. It…
anupampunith
  • 147
  • 4
  • 12
1
vote
1 answer

Adding icon button to column headers for ControlsFX TableFilter

I have implemented the open-source ControlsFX TableFilter on a project that I am working on. If you take a look at the documentation, you realize that there is no icon that lets the user know that there is a filter option for a column. Instead, you…
oreos
  • 21
  • 1
1
vote
2 answers

JavaFX ControlsFx adding custom CSS (Notification)

I am using the controlsfx library, particularly it's Notifications component, however it's default CSS styling doesn't fit my applications style at all, so I'm trying to change it. I tried using the solution provided in this post Is there a way to…
Arcimboldo
  • 31
  • 1
  • 4
1
vote
0 answers

ControlsFx notification adds padding into application

This is the image from my system before call ControlsFx notification This is the image from my system after call ControlsFx notification It adds a border in the left, right top and bottom of the screen. I have already searched the documentation but…
1
vote
1 answer

How to Customize auto complete text field suggestion in JavaFx

I am using ControlFx Textfields binding which works find. The thing is that the Suggestion popup values that Contains the inputed value. Like if i type in "M" values will be "Emma", "max", "rosemary", "Mathew". So my main Question is how to make the…
kelvin andre
  • 395
  • 5
  • 11
1
vote
2 answers

Don't get ControlsFX repo to compile

I cannot compile the ControlsFX repo which I cloned from Github. It does not work because there are absolute paths in the required libraries (the ones with user "Eugene") that do not exist on my machine.