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

Arrow key selection does not work to Autocompleated combo box when combo box values are reload java Fx

The 1st time program is loaded the arrow key selection in autocomplete combobox works. But after I clear and reload the values in it using a method below the arrow key navigation and selection of combobox items does not work. I use…
Paradox
  • 31
  • 3
0
votes
1 answer

Importing fxcontrols jar file into eclipse doesn't work

I wanted to try the fxcontrols' SpreadsheetView example code at: https://controlsfx.bitbucket.io/org/controlsfx/control/spreadsheet/SpreadsheetView.html Somehow, adding their .jar file to my Eclipse test project as an external jar file doesn't help…
Simon
  • 67
  • 6
0
votes
1 answer

Is there a way to include JavaFX controlsFX in Intellij Scene Builder?

I was wondering if there is a way to include controlsfx into the Scene Builder inside JetBrains Intellij. I tried to google it but I did not find anything relevant or updated.
dadadima
  • 938
  • 4
  • 28
0
votes
1 answer

ControlsFX Notifications Exception

I am using ControlsFX library for creating Notifications. When I launch project in IDE (NetBeans) everything is good, there is no exception. But when I launch project from jar java -jar .jar I have such exceptions like that. Code: …
droppy
  • 21
  • 3
0
votes
1 answer

Why TextFields.bindAutoCompletion crashing my javafx program?

Only the above statement isn't letting my AnchorPane to load. I have seen too much tutorials and also tried to implement the same but failed every time. package application.UpdateStock; import org.controlsfx.control.textfield.TextFields; import…
Anurag
  • 37
  • 1
  • 6
0
votes
1 answer

Controlsfx Notifications don't work in compiled jar

I'm working on some app with GUI using javafx and have one trouble. Notifications from controlsfx library (org.controlsfx.control.Notifications) work well when I'm running Main class from ItelliJ IDEA, but don't work in compiled jar (I have compiled…
0
votes
1 answer

ControlsFX TextField validation

How can I validate the text field to be contained only float values using ControlsFX validator? TextField price = new TextField(); ValidationSupport validationSupport = new ValidationSupport();
masterofdisaster
  • 1,079
  • 1
  • 12
  • 27
0
votes
2 answers

Using CcontrolsFX's SpreadsheetView in Java 9

I've got an application written in Java 8 with ControlsFX 8.40.14. I run the app under Java 9 (jdk-9.0.1 to be precise) and I got the following exception when the app tries to display SpreadsheetView component. Exception in thread "JavaFX…
user1053510
  • 1,548
  • 1
  • 15
  • 23
0
votes
1 answer

ListSelectionView not displaying contents of ObservableList

I have a ListSelectionView (from the ControlsFX library) in JavaFX and I need it to display a set of values when a particular button is clicked. It displays the values when I place the add the contents into it in the initialize method. But when I…
SaberSz
  • 115
  • 1
  • 10
0
votes
2 answers

javafx + controlsfx glyphicon - unexpected behaviour when .text is set to font-weight: bold

I am using JavaFX with ControlsFX Glyph icons and fontawesome. It works nicely with the default JavaFX Modena theme. But when I add the yellowOnBlack CSS for high contrast, the icons turns to weird font shapes. The Glyph source code explicitly sets…
Thiago Sayão
  • 2,197
  • 3
  • 27
  • 41
0
votes
1 answer

Multi-Threaded Custom Cell Factory

I currently have a custom cell factory that contains videos played through javafx.scene.media. The problem is that when I add more than one video the application is laggy. How can I put each cell on its own thread? Are there better ways to add the…
beepboop
  • 57
  • 6
0
votes
1 answer

Disable SpreadsheetView cell selection via mouse/key events, but retain ability to scroll the view

I'm writing an Excel import wizard which loads a user's spreadsheet into a ControlsFX SpreadsheetView. The user can then identify the relevant columns (i.e., first and last name, etc.) to be imported into the app via a set of combo boxes. Each combo…
pfurbacher
  • 1,789
  • 3
  • 15
  • 23
0
votes
0 answers

setPrefHeight() not working within changeListener (for gridView)

I want the height of my gridView to get automatically adjusted while changing its width (resizing window), the gridView scrollBar doesn't show up and I get one scrollBar (from scrollPane) for the gridView and some additional nodes together. But for…
0
votes
1 answer

ControlsFX. SpreadSheetView. How do hide row or change row height?

I can not hide a row or change its height. I try: GridBase grid = (GridBase) spreadSheetView.getGrid(); grid.setRowHeightCallback(index -> { return 0.0; }); But this only works when the SpreadSheetView component is initialized. And I need to…
0
votes
1 answer

ControlsFX StatusBar displays only once

I want to use ControlsFX StatusBar to display the progress of a long running task. Problem is: In the following code the progress bar displays only once, although the console output is fine every time the task runs. Am I missing something? public…
ray_ray_ray
  • 316
  • 1
  • 14