VBox is a JavaFX layout pane that lays out its children in a single vertical column.
Questions tagged [vbox]
158 questions
-1
votes
1 answer
Get TextField from Node, getText from Textfield w/JavaFX --NO Scenebuilder
I am working on a simple GUI that takes first name, last name, phone, etc with TextFields. I have buttons like "New", "Update", and "Delete" so you can do stuff to the entered data.
I'm still new to JavaFX, so I'm not 100% confident in my GUI design…

Bobemius
- 21
- 4
-1
votes
1 answer
Adding multiple nodes to vbox javafx
I am new in JavaFx and I spend too much time trying to put radio button + textfield dynamically. After typing a number, I want to display my radio buttons and my TextFields in that way (blue and red ones)
But I got this:
I tried with vbox, hbox,…

Mira
- 53
- 2
- 9
-1
votes
2 answers
JAVAFX - scene questions
The end goal is to reproduce this image as well as possible. I am trying to start from a bottom up approach as I have many questions.
My first question is how can I get labels alongside the textboxes (it has been suggested to use VBoxes on an hbox…

Patrick
- 51
- 7
-1
votes
1 answer
ExtJS 3.4 vbox layout is not rendering correctly
I'm trying to render a GridPanel, and two regular Panels in a vbox layout (will update the Panels based on user actions later).
http://jsfiddle.net/auVez/
I have the store working OK
var store = new Ext.data.ArrayStore({
autoDestroy: true,
…

Swannie
- 78
- 6
-1
votes
1 answer
Design issue with Flex
I am working with Flex 3.0. I am trying to nest VBoxes within a TabNavigator and that works fine. But in my first VBox I have two buttons which won't show. I am not great with design concepts anyway and am new to Flex. I have tried messing with…

cjohnson2136
- 1,571
- 2
- 13
- 17
-2
votes
1 answer
Removing any HBox child nodes throws a NullPointerException in JAVAFX
In this design, when I try and delete the VBox from the parent node which is an HBox, I see that the VBox node is removed from the scene, however, it throws a NullPointerException after deleting the element.
Would appreciate any helps...
this is my…

Tamim Daudzai
- 1
- 2
-2
votes
2 answers
JAVAFX Stage : Default button selection and alignment with text padding
I am new to Javafx and trying to implement a Warning/Confirmation Dialog box for the User.
I am able to get the dialog box, but unable to align it as per requirement.
Below is how my dialog box looks currently:
Now, I need to make two changes,
I…

Croy
- 241
- 3
- 14
-2
votes
1 answer
Calling methods on VBox throws NullPointerException
I am working on a client-server messenger application for practice. In my client module there is the Client class, the ClientController class, the ClientGUI class and fxml file, the Message class, a CSS file and the Main class. I have a method in my…

Gabe
- 59
- 1
- 9