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

Attach ControlsFX PopOver to parent node

Using a jdk 1.8.0 and ControlsFX 8.20.8 I am drawing a circle into a group that is within a pane and when the circle is clicked I want a PopOver to appear, showing details about the circle. All this works fine, but the PopOver seems to be totally…
Samarek
  • 444
  • 1
  • 8
  • 22
1
vote
1 answer

javafx combobox editable autocomplete

I have created a combo box which adds list of entries. I have made this combo box as editable and autocomplete. The issue is as follows 1)I selected the Arial value from the dropdown using mouseclick. 2)After that I typed black and from the result…
1
vote
2 answers

Change Color of Controls FX PopOver Title

Would like to change the color of a controls FX PopOver title which is set to always be on. I would like to do this in CSS, where I have already changed the background color. I have tried a couple of different options under .popover. This is an…
Agricola
  • 572
  • 1
  • 8
  • 20
1
vote
1 answer

Add FXML file into ControlsFX popup

So I am new to JavaFX and from all the tutorials I've watched and apps I've coded, the entire view is created in the FXML file. I came across ControlsFX and Im trying to implement the popup feature in it. My question here is; How do I set all the…
Salman Fazal
  • 559
  • 7
  • 22
1
vote
0 answers

How to use TextFields.bindAutoCompletion() without a default selection in the suggestions

The problem here is that there are similar product names so I only want to search for substrings to get a list of products (which is possible). The method is called like this: TextFields.bindAutoCompletion(searchTerm, productNames); However the…
cookieDope
  • 33
  • 2
  • 9
1
vote
1 answer

Custom CheckComboBox

I am using CheckComboBox control from ControlsFX project. But I want to create a custom rule: When you click at Item0, then it should clean all other selections. If you click at Item0 again, it remain checked. If you select Item(X), it clean Item0…
Marckaraujo
  • 7,422
  • 11
  • 59
  • 97
1
vote
0 answers

ControlsFX notification not working in the controller

I'm trying to show a notification when a pane is first rendered. Here is the code for my controller initialize method. @Override public void initialize(URL location, ResourceBundle resources) { Notifications.create() …
Suemayah Eldursi
  • 969
  • 4
  • 14
  • 36
1
vote
0 answers

ControlsFX sample source not found

I am trying to access controlsFX (controlsfx-samples-8.40.12.jar); When I access the FX sampler jar file I am able to see the layout and the function but I get nothing for the sample source code or the css. I have opened a ticket but I was wondering…
Moe
  • 1,427
  • 4
  • 34
  • 54
1
vote
1 answer

NotificationPane doesn't show up in Scene

I would like to display a NotificationPane after certain user actions. My application has multiple scenes and the NotificationPane should be showed up in the currently active scene. The whole thing works with Notification, it pops up when I need…
1
vote
1 answer

JavaFX/Controlsfx - How to monitor item change in a PropertySheet?

Is there a convenice way to monitor the propertysheet item status? Like textfield get focused, boolean status change, etc. I've looked the javadoc,did't find one. And there's an issue here, but the solution seems to let the editor know the change…
1
vote
0 answers

How can I customize the formatting of a ControlsFX autocomplete textbox?

I have an autocomplete textbox: TextFields.bindAutoCompletion(txt_numberOfCard_GENERAL, PossibleWords); How can I change the text size and color of the autocomplete drop-down list?
1
vote
0 answers

ControlsFX: Validation on Button click

I am trying to validate two Textfields in javafx on a button click, I am using ControlsFX to do this. Here is my validation code: private void applyValidationSupprot() { ValidationSupport support = new ValidationSupport(); …
Ayoub.A
  • 1,943
  • 3
  • 27
  • 34
1
vote
0 answers

TilePane like structure that is virtualized and has selection support

How can I display a set of data in a tile like structure? I know I can use a TilePane but it is not a virtualized control and displaying over 1000+ images can slow it down. I have looked into ControlFX's GridView control which is a virtualized…
Zocp
  • 97
  • 1
  • 6
1
vote
1 answer

CheckComboBox does not have show() method similar to the ComboBox

We have requirement to show CheckComboBox in expandable mode after click of button. The normal ComboBox is having show() method and we need same method /functionality for CheckComboBox. show() method is not availanble for CheckComboBox. Can you let…
1
vote
1 answer

Is it possible to change the ToggleSwitch colour in ControlsFX

I'm using ToggleSwitch in controlsFX which is wonderful. I'd like to change the colour from the default sky blue to another colour. I've used css styling but it changes the background behind the ToggleSwitch. Is there a way to customise the actual…
Suemayah Eldursi
  • 969
  • 4
  • 14
  • 36