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

Property from properties file being read in the wrong encoding

I have a properties file with some properties in Portuguese language, using some accented characters. These properties are read from a 3rd party library (Controls FX Dialogs). But somehow the accented characters are being read in the wrong encoding…
Mateus Viccari
  • 7,389
  • 14
  • 65
  • 101
0
votes
1 answer

Exception when using CheckListView of Controls FX

I have the error : Exception in thread "JavaFX Application Thread" java.lang.IndexOutOfBoundsException: Index: 0 I thought it was because I have to use Platform.runLater(), but it seems the errors does not come from this. Here's the function that…
Evans Belloeil
  • 2,413
  • 7
  • 43
  • 76
0
votes
0 answers

Setting width of controlsFX dialogs

I'm using controlsFX for dialogs and I can't figure out how to set the width. A lot of my messages only include the title, masthead and buttons. But the text in the buttons isn't fully display. For example: Action deleteStuff = new…
wheels
  • 11
  • 5
0
votes
1 answer

JavaFX ListChangedListeners not firing with ControlsFX PopOver and CheckListView

I am writing a generic Java class to display a list of filter items that can be un/checked and the resulting selection being then passed to a controller to filter the collection of primary objects for display. I'm using two ControlsFX controls: the…
0
votes
1 answer

TextField/Component Validation with Controls FX

I'm trying to implement a textfield like this one : TextField Validation http://imageshack.com/a/img537/8329/FSht8P.png My goal is to identify if the text of the TextField is a Double or something else (then it appears in red). I want to use…
Evans Belloeil
  • 2,413
  • 7
  • 43
  • 76
0
votes
1 answer

Where is local javadoc for ControlsFX?

I'm new(ish) to Java/Netbeans/ControlsFX. I know about Javadoc and would like NetBeans to show me javadoc for ControlsFX. I see the online version of the docs for ControlsFX but that defeats (at least part of) the purpose of using an IDE? I know how…
bo gusman
  • 127
  • 1
  • 2
  • 9
0
votes
1 answer

How to take a whole (Image) Snapshot of JFXtras Agendatable / ControlsFX Spreadsheet Javafx 8

In our Project we have already used snapshot() of the Class Node taking a "Screenshot" of a Javafx 8 table. The snapshot() function is always taking a Screenshot of the whole Node/Scene. It does work for the regular tables, but since we are using…
0
votes
1 answer

Controls FX Progress Dialog Modality & Alert Modality

I have run into a little bit of an issue that I am not real sure on what to do. My application will have a general application stage which will present the users with their options for work - i.e. a task list, or something like that. When the users…
purring pigeon
  • 4,141
  • 5
  • 35
  • 68
0
votes
1 answer

Adding ControlFX.jar file to build path

I am trying to install ControlFx for creating dialogs in my application. I have put controlsfx-8.x.x.jar file in the appropriate folder (lib/ext). It is the same folder where jfxrt.jar is present. I am unable to add this jar to build path. The only…
0
votes
1 answer

CommandLink missing in controlsfx' new version controlsfx-8.20.7

I developed my JavaFX app with ControlsFX version controlsfx-8.0.6_20. When I upgrade the ControlsFX to its newest version, controlsfx-8.20.7, my sources become uncompilable, discovering some of the classes previously found in ControlFx' previous…
Warren Nocos
  • 1,222
  • 1
  • 14
  • 29
0
votes
1 answer

Java/JavaFX8: Perform action when input in TextField has certain length

I am currently using the AutoComplete TextField functionality from ControlsFX to show suggestions when the user is typing. The amount of suggestions is large, and therefore the list doesn't fit on the page. I would like to set the length of the…
bashoogzaad
  • 4,611
  • 8
  • 40
  • 65
0
votes
1 answer

rating value not set

i'm using rating feature of controlsfx http://fxexperience.com/controlsfx/features/#rating .i'm attempting to get rating value from database for a each file. Although the value returned is not set on the stars. here's my code: File apps = new…
0
votes
2 answers

set Rating value to text box

Here I'm Using rating feature of ControlsFX. Each time rating value 's altered, I need to update the value in TextField as shown in screen shot. Is it possible to use javafx.concurrent.Task here? and how can I apply it? here's my…
0
votes
1 answer

JavaFX Controls Dialog and SegmentedButtons

I am using the latest version of ControlsFX for JavaFX, and I am encountering a very strange bug.. and I'm hoping someone has found out a "fix" for it. I've not created a simple test case for this, but if I create a custom Dialog, add a GridPane on…
user2499946
  • 679
  • 1
  • 10
  • 28
0
votes
1 answer

Add VBox in InfoOverlay

I'm using this very simple example of InfoOverlay: import javafx.application.Application; import javafx.scene.Node; import javafx.scene.Parent; import javafx.scene.Scene; import javafx.scene.image.ImageView; import…
user1285928
  • 1,328
  • 29
  • 98
  • 147
1 2 3
19
20