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

JavaFx. Is there a way to programmatically scroll GridView?

I need to use GridView in my project. And I want to scroll programmatically to the view in this GridView. Is there a way to do this? From what I know you can only programmatically scroll a ScrollPane.
0
votes
2 answers

Multiple scene nodes in PropertySheet Editor JavaFX

I want to add checkbox and textfield to one property of PropertySheet (ControlsFX library). Is it possible or no? So, i just need to add some GUI elements together to one PropertyEditor, for example checkbox + button, checkbox + label, checkbox +…
Korvin Gump
  • 383
  • 4
  • 7
0
votes
1 answer

progress indicator for javafx app

I'm using below code for showing progress indicator for loading tasks.I'm using MaskerPane from ControlsFX progress indicator. But when i using the component , maskerpane only showing 1 time..Please suggest a better way for showing progress…
boycod3
  • 5,033
  • 11
  • 58
  • 87
0
votes
1 answer

How to wire action to a button in ControlsFX?

In Swing it was possible to connect action to a button and button was reflecting action's parameters like icon, enableness, text and so on. Is this also possible with ControlsFX' Action? If yes then how?
Dims
  • 47,675
  • 117
  • 331
  • 600
0
votes
1 answer

Controlsfx PopOver style and focus

I'm working with a Popover, which is used as a tooltip-like help-display for a Textfield. It contains a Label and a TextArea as content and is created, when the user enters the text field. (Via FocusPropery.addListener ) I apply the style…
FrankT
  • 48
  • 1
  • 1
  • 11
0
votes
1 answer

Set focus on PropertySheet Item Node in ControlsFX

I want to set focus on PropertySheet.Item Node (for example TextField) in ControlsFX. PropertySheet Item have unique name, so i can find PropertySheet.Item with code propertySheet.getItems().get(i).getName(). But there is no API to get Node which…
Korvin Gump
  • 383
  • 4
  • 7
0
votes
1 answer

How to set height and width of ControlFX Popover component

I'm using ControlFx's Popover to display validation messages . I'm not able to set the desired height,width and style to the popover. Below is the code I'm using. PopOver popOver = new PopOver(); Label messageLable = new Label(); …
user68883
  • 828
  • 1
  • 10
  • 26
0
votes
1 answer

Show Controlfx MaskerPane before newtwork request/bind Maskerpane to Http request

I will like the ControlFx MaskerPane to be showing while the request is going on. I have this code on a button action to make the network request. if(mp==null){ mp=new MaskerPane(); stackPane.getChildren().add(mp); …
olyjosh
  • 431
  • 7
  • 15
0
votes
1 answer

Java Relational Tree Bottom Up

Hey guys I have been struggling to figure out a solution to my problem. I want to implement a ControlsFX CheckTreeView into my JavaFx app. Basically I have a List of String that are formatted to match a navigation bar on a website. So far example…
user3459799
  • 345
  • 6
  • 16
0
votes
1 answer

buttons size increase controlsfx

is possible increase the size of the buttons in dialog. I need to be bigger. Thanks
Marco R
  • 306
  • 2
  • 11
0
votes
1 answer

JavaFX ControlsFX Autocomplete: How to get popup result into a new ObservableList

I've created a Text Field and bind it into a AutoCompletion. AutoCompletionBinding acb = TextFields.bindAutoCompletion(new TextField(), FXCollections.observableArrayList("Apple", "Orange", "Wood Apple", "Avacado")); When I type 'App' in textfield.…
Hiran
  • 287
  • 4
  • 19
0
votes
1 answer

ControlsFX LineBorder with title has white background rather than transparent

So when I make a ControlsFX titled border surrounding whatever I get this weird glitch: See the white area around the 'hi'? That isn't suppose to be there. The weird thing is if I add the same border (new instance) to another Tab, then it becomes…
Chris Smith
  • 2,928
  • 4
  • 27
  • 59
0
votes
1 answer

ControlsFX RangeSlider Can't be disabled

I am using ControlsFX 8.40.9 and latest JDK 1.8.0_51 I can't set the RangeSlider to disabled. I am getting warning in log when setting slider.setDisable(true); : Aug 05, 2015 5:40:45 PM javafx.scene.CssStyleHelper calculateValue WARNING: Could…
Dimitris
  • 3,975
  • 5
  • 25
  • 27
0
votes
0 answers

ControlsFX AutoComplete, how does it work?

I'm trying to use the custom control TextField Auto Complete of ControlsFX. To do so I bind a TextField to an ObservableList : AutoCompletionBinding autoCompletionBinding =…
Evans Belloeil
  • 2,413
  • 7
  • 43
  • 76
0
votes
0 answers

JavaFX or controlsfx custom title bar

Curretly, I'm using javafx.scene.control.Alert and org.controlsfx.control.Notifications for displaying messages to user. I already have some dialogs with custom title bar so I want to have the same title bar on dialogs, but I didn't find any…
insan-e
  • 3,883
  • 3
  • 18
  • 43