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

How to use controlsFX with FXML

I'm using the ControlsFX ToggleSwitch like so: I want to be able to associate actions on this ToggleSwitch with a method in my…
Suemayah Eldursi
  • 969
  • 4
  • 14
  • 36
1
vote
1 answer

Want the height of ControlsFX SpreadsheetView to the total of the rowheight

I want the height of the spreadsheetview to be as long as the total rows in it. that is if there are 3 rows of 30,40,50 height the height of spreadsheetview should be 120, i want the rowheight to be AUTOFIT, as i wrap text on few cells. the…
Tyson
  • 11
  • 1
  • 3
1
vote
2 answers

JavaFx Spreadsheet Cell Right Click Open Dialog

I am new to SpreadSheet functionality of ControlsFx Api. I would like to open Dialog on right click of Spreadsheetcell of SpreadsheetView in Javafx. Any help is greatly appreciated.
DeepInJava
  • 1,871
  • 3
  • 16
  • 31
1
vote
1 answer

NotificationPane not displaying custom node

I would like to display a custom made node as content of ControlFx NotificationPane. I tried and put the custom node as parameter to NotificationPane class, like so NotificationPane np = new NotificationPane(customNode) but did not show. I made a…
Yunus Einsteinium
  • 1,102
  • 4
  • 21
  • 55
1
vote
1 answer

How to align vertically children of StatusBar in FXControls?

I have created StatusBar in the following way:
Dims
  • 47,675
  • 117
  • 331
  • 600
1
vote
0 answers

ControlsFX MaskerPane http won't show

I want to show the MaskerPane from ControlsFx if a network request is executed. It should be an indicator if the request is still running. Also i want to run the network request in the background so the window doesn't freeze. private void…
Ronon
  • 738
  • 10
  • 26
1
vote
2 answers

Combo with ObservableMap Binding

I have a Combo populated using ObservableMap. What I want is if an item(key) is selected in combo, to be able to get corresponding object(value). This is what I have so far import java.sql.PreparedStatement; import…
Yunus Einsteinium
  • 1,102
  • 4
  • 21
  • 55
1
vote
1 answer

How to open an FXML file in Scene Builder after adding an unsupported CheckComboBox control?

I am developing a JavaFX application using IntelliJ IDEA and Scene Builder. In order to create a combobox with multiple selection I have imported the controlsfx.jar library to both Scene Builder and my project, planning to use the CheckComboBox…
Ionna
  • 223
  • 4
  • 19
1
vote
1 answer

Javafx create dialog on lost focus crashes the app when closing window

In a JavaFX stage, I want to validate user input when the focus leaves a textfield. If the user input is not a valid age (0 to 120), then a Dialog using ControlsFX Dialogs with an error message is displayed. Here's the…
DeBaze
  • 383
  • 1
  • 15
1
vote
2 answers

RangeSlider causes NullPointerException when pressing Tab on the focused slider

I'm getting NullPointerException when using org.controlsfx.control.RangeSlider. Here is the simple code example: package experimental_main; import org.controlsfx.control.RangeSlider; import javafx.application.Application; import…
Cryptor
  • 347
  • 1
  • 3
  • 9
1
vote
1 answer

ControlFX PropertySheet not showing anything

I am using ControlFX library in my project to generate forms dynamicly using PropertySheet. Controllor class: public class Controllor implements Initializable { @FXML private PropertySheet sheet; @Override public void…
MontaWiso
  • 99
  • 1
  • 1
  • 7
1
vote
0 answers

(ControlsFX) How to rename SpreadsheetView column header?

i'm a JavaFX newbie and interested to build a spreadsheet application using SpreadsheetView control. The SpreadsheetView default column header are alphabetical character(A,B,C,...). At this time, i need to rename the column header but cant find the…
1
vote
2 answers

Set category name for bean fields in PropertySheet JavaFX

ContolsFX example for PropertySheet have several options. First, create a bean with beaninfo. In this case I can't set category for each field in PropertySheet. I can choose only between basic and expert categories. Second option is to use Map,…
Korvin Gump
  • 383
  • 4
  • 7
1
vote
1 answer

ControlFx dialogs not opening on different computers

I am using dialogs in my javaFX application in order to show background processes in running.However when i am opening same source code in eclipse on other computers it throws errors.here is code for dialog which one i am…
user5891223
1
vote
0 answers

Not able to apply Styling in ControlFX Popover

In my project I am using controlfx popover, I have tried a lot to put style class, below are code snippet but am failing to do so popOver.getSkin().getNode().setStyle("-fx-border-color: GREEN"); ((Parent)…
Saurabh
  • 41
  • 8