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
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
  • 354
  • 3
  • 18
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
  • 521
  • 7
  • 17
3
votes
2 answers

JavaFX SegmentedButton - Buttons full width

I got a SegmentedButton which contains 3 "glyph only" ToggleButtons like this:
JuHwon
  • 2,033
  • 2
  • 34
  • 54
3
votes
1 answer

Handle event on CheckListView of Controls FX

I try to work with Controls FX and the Check List View component, but I have several issues on how to use it : By default, cell are not selected when I add item in the CheckListView, how can I do to have it selected by default ? I think I have to…
Evans Belloeil
  • 2,413
  • 7
  • 43
  • 76
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
1 answer

Styling a dialog from JavaFX Openjfx Dialogs project

I was reading this question: Action Buttons css style in JavaFX ControlFX dialog, to find out whether it's possible to change JavaFX alert dialogs in terms of style. The answer was pretty good but I was wondering whether it's possible to just…
LOLWTFasdasd asdad
  • 2,625
  • 5
  • 26
  • 39
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?
3
votes
1 answer

Validator in ControlsFX Wizard last page

Is there any way of adding a Validator to the last page in ControlsFX Wizards? I am currently using the following on the last page : public void onEnteringPage(Wizard wizard) { wizard.getValidationSupport().registerValidator(cb, …
miniHessel
  • 778
  • 4
  • 15
  • 39
3
votes
2 answers

How to listen to open/close events of a CheckComboBox?

I'm using ControlsFX's CheckComboBox and want to listen for open and close events of the menu. Is there a way to do that? I need this, to commit the done changes when the users closes the menu / leaves the field. In TextFields I do this when the…
Tim Büthe
  • 62,884
  • 17
  • 92
  • 129
2
votes
1 answer

How can I access scroll position in controlsfx GridView for JavaFX?

I am using a controlsfx GridView in a JavaFX application. It shows a scrollbar when needed, but I can't find any way to determine where the scrollbar is positioned at, nor update it. I need to be able to do things like respond to a "go to the top"…
user3763100
  • 13,037
  • 3
  • 13
  • 9
2
votes
0 answers

AutoComplete ComboBox with ControlsFX triggers auto completion when selecting value with mouse

I have a simple ComboBox that I've used ControlsFX to make auto-completing. This works perfectly except for one annoying flaw: When the user uses the dropdown to select an item with the mouse, the autocomplete window opens up, essentially offering…
Zephyr
  • 9,885
  • 4
  • 28
  • 63
2
votes
1 answer

How do I fix the controlsfx demo program to initialize class org.controlsfx.glyphfont.FontAwesome?

The controlsfx JavaFX library has a demo program and some controls fail to run, such as List Selection View, or List Action View or BreadCrumbBar. I re-tested this on a new Windows 10 PC, with JDK11 and Gradle 5.5 freshly installed. I downloaded…
tpc1095
  • 109
  • 1
  • 12
2
votes
1 answer

How to rotate cell value in spreadsheetview controlsfx?

I tried using the code below //css .spreadsheet-cell.verticalHeader{ -fx-rotate: -90; -fx-background-color: white; } //controller cell = SpreadsheetCellType.STRING.createCell(row, 2, 1,1, "Pin"); …
James Buns
  • 47
  • 8
2
votes
1 answer

JavaFX change node generated by FXML to another node

I have a complicated UI defined by the fxml file. There are a lot of stock TextFields that I would like to change to more advanced versions (clearable text field) provided by ControlsFX library. The problem: ControlsFX uses CustomTextField to…
CorellianAle
  • 645
  • 8
  • 16
2
votes
1 answer

how do I change the border of controlsfx SegmentedButton with CSS?

SegmentedButton I'm trying to add a border to the ControlsFX SegmentedButton. When I change the background colors they keep the correct shape as shown in the above image. Here is the CSS: .segmented-button{ -fx-focus-color: transparent; …
1 2
3
19 20