Questions tagged [vbox]

VBox is a JavaFX layout pane that lays out its children in a single vertical column.

158 questions
0
votes
1 answer

flex add radiobutton child to VBox

I am having troubles adding a radiobutton to a VBox in actionscript. var radioButton:RadioButton = new RadioButton(); radioButton.groupName = "source"; radioButton.label = "label"; radioButton.selected = false; …
asawilliams
  • 2,908
  • 2
  • 30
  • 54
0
votes
1 answer

How to get the height of VBox before setting it to the parent

I have a VBox with elements and one Line(javafx). I want the line's height to be same as that of the VBox. These elements are put inside a Hbox and I have many such Hbox's. The problem is vbox.getHeight() returns me zero unless I have put the whole…
ItachiUchiha
  • 36,135
  • 10
  • 122
  • 176
0
votes
0 answers

Sencha List height

I have a composite view: a tab panel (which is a view, call it Man) has in one of the panels a vertical box (another view, call it ListView), inside this vertical box there is a list object (it's an item of the vbox). It is clear how to load/refresh…
T. Rossi
  • 465
  • 1
  • 6
  • 23
0
votes
3 answers

Flex: List with VBOX-type (smooth) scrolling?

I have a list control that uses a custom itemRenderer and custom itemEditor. The itemRenderer/Editor are textarea controls with at least 3 lines of text each. The default scrolling nature of a list control is by Item, rather than by some number of…
Matt H.
  • 10,438
  • 9
  • 45
  • 62
0
votes
1 answer

Arranging components in Sencha Touch 2

I need some help in Sencha Touch because I'm not familiar with it. I want to arrange two buttons in the center of the page. My problem is, that the container doesn't stretch in the place between the top- and…
Pilzli
  • 15
  • 3
0
votes
1 answer

How to relocate VBox inside BorderPane?

I have VBox filled with ImageViews and VBox is placed within BorderPane on CENTER. Now when move ScrollBar I get its value and I want my VBox to be relocated by Y axis as much as ScrollBar value. My code is simple: @Override public void…
Volodymyr Levytskyi
  • 3,364
  • 9
  • 46
  • 83
0
votes
1 answer

Resizing child items of vbox

We recently updated our ext-js from 4.1 to 4.2. On 4.1 following code made it possible to resize child items of vbox used here. We could drag border between those children, and both items would resize. In 4.2 there is no way to resize those…
Areinu
  • 172
  • 1
  • 13
0
votes
1 answer

Groovy-Issue: recalling a closure inside of a vbox again, when a spinner's stateChanged fires an action

If you take the numPanels as a fixed value of e.g. 20, it's really a nice and groovy swinging. But I try since two days to add more or less panels with a groovy.swing.Spinner dynamically (my program will be used to connect to different databases…
Jochen Haßfurter
  • 875
  • 2
  • 13
  • 27
0
votes
2 answers

HTML vertical resizeable areas on the page

I'm trying to create a page layout like This But I am not sure how to achieve it. What I mean; in that page you can see there are two areas in the page and you can resize the areas using the bar between them. Thanks!
Olgun Kaya
  • 2,519
  • 4
  • 32
  • 46
0
votes
1 answer

Flex 3: VBox items not moving up when previous item is hidden

I have a vbox with 11 canvases inside of it. The user is given the option to show/hide any one of the 11 canvases at any time. When the user selects to hide one of the canvases, I would like to have everything else after it shift up. For example,…
Brds
  • 1,035
  • 3
  • 17
  • 37
-1
votes
1 answer

Can't access jenkins from my guest ubuntu vbox machine after trying anything

I'm actually working on a devops tutoriel and so i need to run jenkins in a ubuntu virtual machine in virtual box. The problem is that I can't access jenkins from my host Windows 10 (browser: ip_address_vm:8080) after trying anything I found on the…
mannofsky
  • 1
  • 1
-1
votes
1 answer

How to access my HBox inside a tab in JavaFX?

I have a tabPane with many tabs and each of those tabs has a HBox with many VBox in the HBox. The tabs and their HBox load at the start by looping through a database and creating them for each row and once done I want to add more VBoxs into the…
Shenavyre
  • 61
  • 7
-1
votes
1 answer

Can you place a Button in front of a VBox in JavaFx?

Currently I'm working together with a collegue on a contact app. The contacts are displayed in a ScrollPane that contains a VBox. This VBox contains a Button for each contact to represent a list of contacts. Our goal is to add a Button to create…
-1
votes
1 answer

Swing: can't center a vbox inside a JPanel

I have this code that creates a simply JPanel with text User profile panel username: a user email: email@gmail.com Button1 Button2 Each row - is a HorizontalBox and all rows come into a VerticalBox. I try to center the result VerticalBox, but it…
parsecer
  • 4,758
  • 13
  • 71
  • 140
-1
votes
2 answers

Can't scroll VBox full of labels using ScrollPane

Basically making a list of labels that add up. As they reach the bottom, they go out of their bounds (Also must be behind the TextField) and is impossible to scroll it. How to make them behave normally? Labels are added into VBox that is inside…
Zackyy
  • 41
  • 5
1 2 3
10
11