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
4
votes
1 answer

Customize ControlsFX Notifications

I want to use ControlsFX Notifications class, as JavaFX seems to doesn't offer anything like it (or does it?). For me to use it I want to be able to customize the color of the notification and some other styles. Does anybody have an idea of how I…
st.huber
  • 1,481
  • 2
  • 24
  • 45
4
votes
2 answers

ControlsFX complex validation

I need to validate simple JavaFX form with password and password confirmation. validationSupport.registerValidator(passwordInput, Validator.createEmptyValidator("Password…
Denis Kokorin
  • 887
  • 8
  • 17
4
votes
1 answer

Proper way of Implementing JavaFX' SelectionModel to a View that doesn't have it

I'm attempting to implement a MultipleSelectionModel for ControlsFX' GridView. Researching the internet, Jonathan Giles mentioned that it was a bad idea to add listeners to every GridCell. This left me wondering how to notify the selection model of…
Adam Law
  • 542
  • 1
  • 7
  • 21
4
votes
1 answer

ControlsFX 8.20.7 Wizard examples - getting Wizards to work

I am trying to develop a wizard using the new ControlsFX 8.20.7 release. I have taken a look at the following example: BitBucket ControlsFX, and especially the method showLinearWizard() I simply can't understand how to use this API, can anyone…
miniHessel
  • 778
  • 4
  • 15
  • 39
4
votes
2 answers

How to implement AutoComplete TextField using ControlsFX

I'm using the latest version(8.0.5) of ControlsFX and I think I need a little help with the AutoComplete TextField because I'm very new at this. I got this code from…
napstercake
  • 1,815
  • 6
  • 32
  • 57
3
votes
0 answers

javafx - controlsfx - CheckTreeView - click on CheckBoxTreeItem graphic node is checking the checkbox

Tested on: win10 64 ControlsFx v11.1.1 When I will add a graphic node (ImageView) into CheckBoxTreeItem it behaves as a checkbox (when clicked on). In the example below, I have added wide icons to showcase the issue. Just click on the empty space…
psova
  • 192
  • 2
  • 11
3
votes
3 answers

Reset checkbox selection in ChangeListener under condition

In my JavaFX application I'm using Checkboxes in a TreeView to change the visibility of nodes. checkbox selected = some nodes are visible checkbox deselected = some nodes are invisible In a special case, however, the user should be prompted to…
Enrico
  • 415
  • 1
  • 10
3
votes
1 answer

Bold Text Parts in ControlsFX Notification

I'm trying to write bold text inside the body of a Notification. Notifications.create() .title("My Title") .text("This is text") .showInformation(); As far as I can tell there's only the .text("my text") method to set the…
wand555
  • 155
  • 6
3
votes
0 answers

Error: module not found: org.controlsfx.controls

At first I am a beginner in the module system of Java... I want to connect org.controlsfx.controls library to my app as module. I've created the next module-info.java in my project: module yummy { requires org.controlsfx.controls; requires…
Denis Sologub
  • 7,277
  • 11
  • 56
  • 123
3
votes
2 answers

ControlsFX: Ensure PopOver arrow always points to the right spot

I am using PopOver from ControlsFX, in a TableView If I trigger the startEdit of a cell, it should pop the PopOver. This part it works, the problem is, the arrow which is pointing to the row is not on the right place every time. If I select a row…
Sunflame
  • 2,993
  • 4
  • 24
  • 48
3
votes
1 answer

controlsfx.GridView align left, how to make it align center

here is my code: def list = FXCollections.observableArrayList([]) GridView g = new GridView<>(list); g.setCellFactory(new Callback, GridCell>() { public GridCell call(GridView gridView)…
chikadance
  • 3,591
  • 4
  • 41
  • 73
3
votes
1 answer

ControlsFX: how to add title to a CheckComboBox?

Is it possible to add a title/label to a CheckComboBox? I am thinking about a default item that is not selectable. I am using an inline form that does not have labels for input fields. I wanted to use an inlined title for the CheckComboBox.
user3111525
  • 5,013
  • 9
  • 39
  • 64
3
votes
2 answers

ControlsFX - Exception in thread "ControlsFX Error: ControlsFX 8.40.10 requires at least Java Version 8 Update 40

I've looked at other issues similar. What I can tell you is: This program worked a week ago. I haven't changed scenebuilder. A new JRE, as I recall, was downloaded and it is 1.8.0_101-b13. This is on Linux 64bit. In the very same program Lambda…
Walt Corey
  • 718
  • 7
  • 12
3
votes
1 answer

ControlsFX font Awesome don't show icons

To iconify my application i decided to use ControlFX's Font awesome support. I tried to use it in both Code and FXML, and the result only to "GEAR" icon that works. So, what makes other icon not showing up ? her is the code for FXML file :
abdou amer
  • 819
  • 2
  • 16
  • 43
3
votes
2 answers

Pre-select a JavaFX CheckComboBox

All the solutions I've read relate to ComboBox, not CheckComboBox. Using the ControlsFX CheckComboBox I've been able to add a few options into it using the controller code below. But I can't figure out how to pre-check an option at the time its…
Casey B.
  • 279
  • 3
  • 13
1
2
3
19 20