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

Add Layout Pane

I have a very simple example with ControlsFX 8.0.6 with JavaFX 8. import javafx.application.Application; import static javafx.application.Application.launch; import javafx.geometry.Pos; import javafx.geometry.Side; import javafx.scene.Node; import…
user1285928
  • 1,328
  • 29
  • 98
  • 147
0
votes
2 answers

JavaFX Custom Dialogs not centered

I am using the latest version of the dialogs for JavaFX found from here: http://code.makery.ch/blog/javafx-8-dialogs/. My problem is quite simple: if I create a custom dialog (or use an information dialog with many lines of text separated with…
user2499946
  • 679
  • 1
  • 10
  • 28
0
votes
2 answers

How can I create a blocking dialog in javafx swt mixed application?

I am creating an application which is a mixed application of swt and fx .So to embed Fx controls i am using FX canvas. As per my understanding the fx dialog can be set block-able when I set the stage as its parent and set its initmodality.I had…
Rajesh Kumar Dash
  • 2,203
  • 6
  • 28
  • 57
0
votes
1 answer

JAVAFX-8 CANCEL ACTION Close the stage, using Dialog from controlfx in Javafx?

I'm using dialog box from ControlFx in my JavaFX app. but on clicking Cancel button it close the application. package testing; import javafx.application.Application; import javafx.event.ActionEvent; import javafx.event.Event; import…
DeepSidhu1313
  • 805
  • 15
  • 31
0
votes
2 answers

javafx controlfx dialog box gives error

I use using following codes to open a dialog box in my current project as i have read about controlfx and its awesome dialogbox so i have used its code in my project but it gives error and i don't know why? Dialogs.create() …
user3829658
  • 159
  • 2
  • 7
  • 18
0
votes
2 answers

controlfx dialog usage to include the dialog inside the catch block

I want to show exception stacktrace as soon as an exception is caught in the catch block. I am referring to the doc for ControlFX here. Do I just need to copy a part of code and paste it inside the catch block to get the dialog open? Please let me…
rocky
  • 435
  • 3
  • 8
  • 18
-1
votes
1 answer

ControlsFX Validation GUI Shift

in my project I am building a JavaFX GUI that looks like this: Everything works as I imagine. For the validation of the text fields I would like to use ControlsFX Validation. When I add these three lines of code and press the button so that the…
Guenni97
  • 19
  • 5
-1
votes
1 answer

Barchart as TableRow in JavaFX

I would like to add such kind of bar chart to my application using JavaFX: Essentially: A (potentially large, i.e. up to 50 entries) table. For each row there are several columns with information. One piece of information are percentages about…
ndbd
  • 2,417
  • 3
  • 23
  • 32
-1
votes
1 answer

ControlsFX PopOver - adding style classes cuts off the borders

I've been using The PopOver node of controlsFX so i wanted to change the background color of the control so i've changed the background color of my content node but that left the arrow and the header uncolored here (The white boxes are just cards…
Ahmed Mourad
  • 193
  • 1
  • 2
  • 18
-1
votes
1 answer

Adjust GridView (ControlsFx) height depending on item count

I want to make a GridView resize itself to a value big enough to fit the height of its content so no scrollbar is needed (I want the gridbar together with other nodes in a scrollbar, see image). GridView in Scrollbar But there isn't any possibility…
-1
votes
1 answer

onHiddenProperty event for PopOver Control

I have a PopOver ControlsFX and I want to create an event every time disappears. You searched information and I think it is done with the method onHiddenProperty but I cannot apply it correctly.
Zuri
  • 187
  • 1
  • 8
-3
votes
1 answer

How to add a .zip library to Eclipse

I need to add an external library named ControlFX in my project. Here is the official link to download it: https://github.com/controlsfx/controlsfx The issue is that this file is .zip type. So, I'm really confused about how can I add it as a library…
Youssef Idraiss
  • 396
  • 5
  • 19
-4
votes
1 answer

How to set Width of dropdown on a org.​controlsfx.​control.CheckComboBox in JavaFX

Question My dropdown list of the CheckComboBox expands to the size of the largest element entered in it, but I want to limit its width so it doesn't get larger than the screen width. Library…
KenobiBastila
  • 539
  • 4
  • 16
  • 52
1 2 3
19
20