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
0 answers

ControlsFX: AutoCompletion bind to a model class

I have a model class: public class Client { private long id; private String name; @Override public String toString() { return this.name; } public String getName() { return name; } public void…
Ayoub.A
  • 1,943
  • 3
  • 27
  • 34
0
votes
1 answer

ControlsFX SpreadsheetView rowspan IndexOutOfBoundsException

I am new to JavaFX and ControlsFX. I am trying to create a very basic SpreadsheetView using the ControlsFX library. Following is the function to populate and create the SpreadsheetView: private fun spreadSheetFunc() : SpreadsheetView { val…
niteesh
  • 329
  • 3
  • 12
0
votes
0 answers

java.lang.NoClassDefFoundError: Could not initialize class impl.org.controlsfx.table.FilterPanel On Mac

The above error is observed while working on a Mac only. On Windows the same code of my application works fine. Any idea about it?
Hiren
  • 51
  • 5
0
votes
1 answer

JavaFX command link dialog

I want to make dialog exactly the same as described in this tutorial http://code.makery.ch/blog/javafx-8-dialogs/. Dialog is called "Command Link Dialog". Unfortunately this tutorial is depracated since these dialogs are inside JDK 8u40. Is there a…
scoozi17
  • 55
  • 1
  • 1
  • 4
0
votes
1 answer

TextField in PopOver with strange behavior

I have a PopOver with a TextField with a strange behavior, this PopOver it's owned by other TextField because when I type the word 'Fernández' all keys are processed by the internal TextField except when I type a stressed vowel like 'á' that it's…
axiorema
  • 165
  • 1
  • 2
  • 9
0
votes
0 answers

Notify button ActionEvent from GridCell

I have a GridView with custom GridCell that contains a button. private class MyGridCell extends GridCell { @FXML private Button button; ... protected void updateItem(modelclass item, boolean empty) { ... …
axiorema
  • 165
  • 1
  • 2
  • 9
0
votes
1 answer

Styling ControlsFX Breadcrumb

I am using BreadcrumbBar from ControlsFX which works fine. The only problem i have is styling it to look like the image below. When using scenic view i saw that this component only has three classes .bread-crumb-bar, .button, .first. I tried adding…
Yunus Einsteinium
  • 1,102
  • 4
  • 21
  • 55
0
votes
1 answer

ControlFX Action Usage

I have an application with both MenuBar and ToolBar. I found in ControlsFX documentation that it is possible to define the action event logic in a different class and assign it to buttons, menuitems and togglebuttons define by fxml. More or less…
Yunus Einsteinium
  • 1,102
  • 4
  • 21
  • 55
0
votes
1 answer

ControlsFX HiddenSidesPane hides When clicked

I am using ControlsFX - HiddenSidesPane where i add some link(ToggleButtons) to be clicked for navigation. The problem i have is whenever anything is clicked, the HiddenSiddesPane hides. The desired behavior is when anything inside it is clicked it…
Yunus Einsteinium
  • 1,102
  • 4
  • 21
  • 55
0
votes
1 answer

JavaFX how to assign content to a child node UI controller

I have written the following code, where I assigned the MasterNode as a new treeView. MasterDetailPane pane = new MasterDetailPane(); pane.setMasterNode(new TreeView()); pane.setDetailNode(new…
Rich Maes
  • 1,204
  • 1
  • 12
  • 29
0
votes
2 answers

Make ControlFx NotificationPane accept Node

ControlsFX has an awesome control called NotificationPane, which can easily be use like so NotificationPane np = new NotificationPane(); np.setText("What to be displayed here"); What I am wondering, is it possible to extends it in such a way that,…
Yunus Einsteinium
  • 1,102
  • 4
  • 21
  • 55
0
votes
1 answer

Howto use SimpleLocalizedStringProperty (controlsfx-plugin) with ResourceBundle in JavaFX

I am working with the controlsfx plugin and I came across an implementation for the StringProperty which is of type: SimpleLocalizedStringProperty and is imported from: import impl.org.controlsfx.i18n.SimpleLocalizedStringProperty; Has anyone worked…
Chiggiddi
  • 542
  • 1
  • 8
  • 26
0
votes
1 answer

So how to display message box in JavaFX?

I have read this: http://code.makery.ch/blog/javafx-dialogs-official/ I don't think 40 lines of code is acceptable to display simple exception message dialog box. So, how to display dialog boxes in JavaFX? May be ControlsFX can help? UPDATE Compare…
Dims
  • 47,675
  • 117
  • 331
  • 600
0
votes
1 answer

ControlsFX SpreadsheetView: How to set SpreadsheetCell to graphic only?

I have create my own SpreadsheetCellEditor to show a ColorPicker, but I don't want to return back the ColorPicker.getValue().toString, I want to return a label with Background color of selected value. I have searched for…
abdou amer
  • 819
  • 2
  • 16
  • 43
0
votes
0 answers

How to use keyboard activation of the CheckComboBox

We have added a CheckComboBox to our window. We populate it this way: categoriesCheckComboBox.getItems().setAll(items); This control is working for our needs except we can't seem to activate it with the keyboard. Using a normal combobox, we can…
purring pigeon
  • 4,141
  • 5
  • 35
  • 68