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.

267 questions
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
  • 768
  • 3
  • 15
  • 33
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…
RicardoGonzales
  • 1,611
  • 3
  • 26
  • 50
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,730
  • 3
  • 16
  • 38
3
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
  • 1,609
  • 1
  • 19
  • 32
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
  • 2,707
  • 2
  • 25
  • 53
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
  • 4,623
  • 8
  • 35
  • 60
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
  • 688
  • 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
  • 709
  • 1
  • 10
  • 37
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.
  • 269
  • 2
  • 13
3
votes
1 answer

Using controlsfx GridView containing list of GridPane

I am learning JavaFx and building a sample app that would display a list of restaurant menu items in a scroll-able way. I figured out the best way to do this is using GridView control from controlsfx because even with the large set of menu items the…
Rahul.B
  • 334
  • 3
  • 16
3
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…
Huber
  • 847
  • 11
  • 31
3
votes
1 answer

How to increase height of JavaFx ControlsFx autocomplete suggestion list?

When I increase the font size of an Autocomplete TextField using CSS or Java, the Autocompleted suggestion list does not increase in height to fit the enlarged text. In addition, the popup doesn't appear below the TextField. It works fine as long…
user2312688
  • 501
  • 7
  • 17
3
votes
2 answers

JavaFX SegmentedButton - Buttons full width

I got a SegmentedButton which contains 3 "glyph only" ToggleButtons like this:
JuHwon
  • 1,963
  • 2
  • 30
  • 52
3
votes
1 answer

How to import the ControlsFx SpreadsheetView into my FXML-File?

i have Problems including the SpreadsheetView by ControlsFX into my FXML-file, is it even possible? Maybe someone could show some of his/her Code? Thanks in advance!
3
votes
3 answers

Action Buttons css style in JavaFX ControlFX dialog

I've been using ControlsFX dialogs to show information, but the style of my application is not blue, and does not match dialog style (color, borders) is there a way to change the button color or styles?
1
2
3
17 18