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

How to change text in cells (SpreadsheetView by ControlsFX)?

I have the SpreadsheetView class in my programm: SpreadsheetView table; gridBase = new GridBase(rowCount, columnCount); ObservableList> rows = FXCollections.observableArrayList(); for (int row = 0; row <…
Pasha Chemerys
  • 55
  • 1
  • 1
  • 4
2
votes
2 answers

Javafx controlsfx Notification doesn't display immediately when show() is called

I'm new to JavaFX and hung up on a minor issue when using ControlsFX Notification. During some longer running tasks (downloading some files for example) I'd like to show a notification when the downloads start, and again when they finish; however,…
docb45
  • 274
  • 3
  • 9
2
votes
0 answers

how to change the look of components in ControlsFX

I implemented the ControlsFX TableFilter in my project and it work fine, but the problem is how can I make the component of the filter look likes the desgin in the back I used JFoenix Library for my desgin https://github.com/jfoenixadmin/JFoenix
Amine Harbaoui
  • 1,247
  • 2
  • 17
  • 34
2
votes
0 answers

ControlFx PropertySheet custom Control

I am using ControlFx PropertySheet in my project . I manage To get it running. BeansObj: public class BeansObj implements Serializable { private String name; private String mail; private boolean smart; private int age; …
MontaWiso
  • 99
  • 1
  • 1
  • 7
2
votes
1 answer

Add CheckComboBox to PropertySheet JavaFX

I want to add CheckComboBox to PropertySheet in controlsfx library. Default editor contains only ComboBox implementation. Is it possible to add CheckComboBox? I tried to implement PropertyEditor with AbstractPropertyEditor but getting exception. …
Korvin Gump
  • 383
  • 4
  • 7
2
votes
0 answers

ControlsFX: CheckComboBox Popup Styling

I am trying to style the actual popup menu (not the cells, because I believe I can style those). I have tried using the ".combo-box-popup" selector and the ".combo-box-popup .list-view" selector to no avail. I believe this is because the…
cogmission
  • 107
  • 8
2
votes
2 answers

controlsfx popover style CSS

How can I change, from CSS, the left arrow fill color in popover from JavaFx? I tried the following, but it didn't work. .popover > .content { -fx-fill: yellow !important; -fx-background-color: red !important; } popover > .content >…
2
votes
3 answers

WizardPane : Disable 'Previous' button on a screen

How can I disable the 'Previous' button on my Screen of the ControlsFX WizardPane? I am trying it with this method prev.setDisable(true) but what I have is NullPointerException. public class MainApp extends Application { Wizard wizard = new…
Z.B
  • 61
  • 8
2
votes
0 answers

ControlsFX Border FXML wrapper not working

I am trying to create a wrapper for ControlsFX's Borders API that will work with FXML. When I run my application, I do not see any content. When I changed the TitledBorder to something else, like a Label, it worked as intended. TitledBorder…
Chris Smith
  • 2,928
  • 4
  • 27
  • 59
2
votes
1 answer

Refresh issue on ControlsFX CheckComboBox display

I'm learning API JavaFX for an application I'm working on at the moment and I am trying to use the CheckComboBox from ControlsFX. I've made a test in order to resolve a problem about items display refresh when I add items in the ObservableList…
2
votes
1 answer

ControlsFX Autocomplete, how to get selected Object?

I've created TextField TextField txtAutocomplete = new TextField(); and List of entities List list = BatchService.list(); and made it autocompletable using ControlsFX TextFields AutoCompletionBinding autoCompletionBinding =…
latsha
  • 1,298
  • 1
  • 14
  • 22
2
votes
1 answer

JavaFX ControlsFX CSS for RangeSlider

I have just downloaded the JavaFX ControlsFX library and am currently stuck. I'm using one of the custom components in the library, called a RangeSlider, but need to manipulate style for each thumb in CSS. I've looked all over the place but can't…
Katie
  • 307
  • 1
  • 5
  • 16
2
votes
1 answer

Set Items Selected in a CheckComboBox

I´m using the CheckComboBox by ControlsFX for a Project and I want to set some of the Items Checked from the Start so I tried this Code in my initialize-Methode, but when i start the program, nothing is set…
2
votes
1 answer

JavaFX (controlsfx-8.20.8) tabbed pane view displaying partially

I was building an application using "JavaFx" (controlsfx-8.0.6) and it was working fine with Windows but in Macintosh and Linux environment the message box that I was using, didn't work. So I moved to controlsfx-8.20.8. Which fixed my message box…
menaka
  • 1,045
  • 1
  • 12
  • 30
2
votes
1 answer

Controls FX TraversalEngine Error

I installed JDK8u20 and tried to run my program with the ControlsFX library in it. This should work fine, but if I call a method from controlsFX, I get the following exception Method private void showError(final String msg) { …
siegy22
  • 4,295
  • 3
  • 25
  • 43