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

JavaFX - connect dragable node by lines

I am building an editor in JavaFx in which the user can add modules. Each module has a number of inputs which are JavaFX-circles and can be moved via Drag and Drop. Between the circles there can be lines (from the center of one circle to the center…
Richard_Papen
  • 127
  • 1
  • 1
  • 7
1
vote
1 answer

ControlsFx Decoration on a Label

I would like to apply ControlsFx decorations in a TableCell and as such would like to apply them to a Label. This following does NOT apply the decoration to the Label. Should it? import org.controlsfx.control.decoration.Decorator; import…
stacktrace
  • 547
  • 1
  • 6
  • 19
1
vote
2 answers

Notification in a JavaFX app

I would like to add a notification to some actions in my JavaFX application. Such as a successful connection to a server, a disconnection to a server, etc ... I tried the NotificationPane from ControlsFX but I can't hide the bar after a short time…
Phoste
  • 1,141
  • 4
  • 18
  • 34
1
vote
1 answer

JavaFx and ControlsFx PopOvers

we have to program a GUI application for our company. In this application we are using the controlsfx library for the PopOvers. We noticed that sometimes the GUI freeze when we have an PopOver open and we change the height of the PopOver. For…
Nickan
  • 15
  • 4
1
vote
0 answers

Problems with AutoCompletation TextField in JavaFX

I hava a problem with AutocompletionText. I make a TextField where it's possible to have dynamic suggestions. switch(hairPossibility.get(observable.getValue().intValue()).toString()){ case ("length"):{ questionCanBeChoosenArray.clear(); …
1
vote
1 answer

Add a component to controlfx maskerpane

I want to be able to customize the content in ControlFx MaskerPane. I tried using the below code to add a component to it but no luck MaskerPane mp = new Maskerpane(); mp.setProgressNode(new Text("Thank you for Your…
olyjosh
  • 431
  • 7
  • 15
1
vote
1 answer

ControlsFx BreadCrumbBar setOnAction event listener issue

I am trying to add a BreadCrumbbar to my JavaFx application using ControlsFx library. It is getting added but i am not able to add listener to listen for any click action on my breadcrumbbar. I have tried setonCrumbAction() function but not able to…
1
vote
1 answer

How can I customize the org.controlsfx.dialog.ProgressDialog from ControlsFX

I created my own custom progress dialog to handle server calls, using a framework that will display pop up the Alert while the background thread is running. I didn't use Service/Task to accomplish the background threading and therefore, I couldn't…
purring pigeon
  • 4,141
  • 5
  • 35
  • 68
1
vote
1 answer

Add Property to ControlsFX PropertySheet

I am creating a PropertySheet and I want to add a Property to the sheet. The problem is, what happens if the value of the property changes, the PropertySheet needs to update to reflect those changes. How would I do this? import…
Chris Smith
  • 2,928
  • 4
  • 27
  • 59
1
vote
1 answer

How to add a Button in the SpreadsheetView table

How can I create a object(Button,Checkbox) in my table? GridBase grid = new GridBase(20, 20); ObservableList> rows = FXCollections.observableArrayList(); for (int row = 0; row < grid.getRowCount(); ++row)…
Z.B
  • 61
  • 8
1
vote
2 answers

How do I use ControlsFX in NetBeans

I'm extremely new to development and running an IDE. I'm using NetBeans and I've searched for an answer so if this is answered somewhere else, please direct me. I've seen it suggested elsewhere, and it sounded like a good idea so I'm trying to use…
Ammon Nelson
  • 45
  • 2
  • 11
1
vote
1 answer

Setting text of TickLabels of RangeSlider (ControlsFX), like the LabelFormatter of JavaFX's Slider?

It's possible to set a LabelFormatter for JavaFX's very own Slider control, this allows one to define the text of the TickLabels freely. Unfortunately this doesn't seem possible with ControlsFX's RangeSlider control. I was wondering whether this is…
underkuerbis
  • 325
  • 3
  • 9
1
vote
2 answers

How to reopen/prevent closing of ControlsFX LoginDialog on failed login?

In my application, the first I do is request the user to login using the controlsFX LoginDialog. If the login is successful, I display the application, however if it fails the login window will close. I would rather the login window stay open to…
purring pigeon
  • 4,141
  • 5
  • 35
  • 68
1
vote
1 answer

Styling JavaFX Popover

I need to style a Popover from ControlsFX, but am failing to do so. I have my own xxx.css stylesheet that I add to a scene, and I've (obviously) successfully styling many JavaFX Controls... I have set this in the stylesheet (copied and modified from…
user2499946
  • 679
  • 1
  • 10
  • 28
1
vote
1 answer

JavaFX: Apply background effect when dialog is open

I am currently exploring the new features from Java JDK 8u40, and I must say I really like the build-in dialog class. In comparison to ControlsFX, there is no background effect when the dialog is openend (ControlsFX made the background appear…
bashoogzaad
  • 4,611
  • 8
  • 40
  • 65