SplitPane is used to divide two components. The two components are divided based on the look and feel implementation, and they can be resized by the user. If the minimum size of the two components is greater than the size of the split pane, the divider will not allow you to resize it.
Questions tagged [splitpane]
91 questions
1
vote
0 answers
JavaFX split pane divider position not working
I have a split pane with a initial divider position set to 0.2, the problem is that after running the application the position is changed to 0.5, I read that it is due to stage.setMaximized(true);
I checked this question, but the answers imply that…

adxl
- 829
- 1
- 9
- 19
1
vote
1 answer
JavaFX SplitPane does not bubble up mouse event
I have a BorderPane. In this pane I have set as the top an HBox with several controls. In the center I have e SplitPane that has two canvases. I want to get a mouse move at the BorderPane when it bubbles up from the SplitPane.
If I use a…

user2051561
- 838
- 1
- 7
- 21
1
vote
1 answer
UWP set ImageSource from SplitView
I have a litte SplitView app an now I will set the ImageSource on page2 from mySplitpanel.
How can I get access to all paramaters like SetSource or Visible?
Here is my code
Mainpage.xaml
user8200389
1
vote
4 answers
JavaFx: auto resize TitledPane
I have a view with two TitledPanes in a SplitPane oriented vertically. I want when I collapse one of them, the other one to be resized to the Scene's height. Here is the code of my .fxml file:

Sunflame
- 2,993
- 4
- 24
- 48
1
vote
1 answer
Javafx stage doesn't show V-Scrollbar
I have a Javafx application, which provides the user a set of tools, each started in a new Stage. I tried for hours but one of these stages never shows the vertical scrollbar. Since I never can see the lower part of the stage, I have neither access…

Alex
- 1,387
- 2
- 9
- 14
1
vote
0 answers
Maximize an application on half of the screen on wayland
I'd like to open gnome-terminal maximized on half of the screen. Just like when you are hitting the shortcut 'super+Left'. I am using a bash script anyway so a hacky solution is ok.
On X11 I could just add
$xdotool key 'super+Left'
to my start-up…

Birger
- 1,111
- 7
- 17
1
vote
1 answer
Javafx : ScrollPane in SplitPane cannot scroll
I have many panes in my .fxml file ( here is the earlier version of my fxml: Javafx : SplitPane resize children) Now I want to fix the first two elements in the split pane in the top of my view, so I put them out of the ScrollPane but now the…

Sunflame
- 2,993
- 4
- 24
- 48
1
vote
1 answer
Javafx : SplitPane resize children
I fave an .fxml file, in which I have added some TitledPane but I cannot resize them in the application. Here is the code:

Sunflame
- 2,993
- 4
- 24
- 48
1
vote
0 answers
ionic2 or 3 implement three views with ion-split-pane?
It works well with only one ion-split-pane.And I have two views in one page.
Pages
…

laker
- 143
- 1
- 1
- 6
1
vote
1 answer
JavaFx: Unresizeable divider in SplitPane
I'm wondering if there is any option to set divider postition to constant position (SplitPane) in FXML file? I'm trying to hold this divider in determined place.

Michael
- 55
- 1
- 2
- 8
1
vote
2 answers
(JavaFX) SplitPane.getDividerPositions() Inconsistent
I have a SplitPane in my main GUI that is behaving strangely. I am trying to save the position between executions of the program and do so by writing/reading a simple text file.
However, I am noticing that the getPosition() method returns an…

Zephyr
- 9,885
- 4
- 28
- 63
1
vote
1 answer
Set up OneTouchExpandable button on JavaFX SplitPane
For my JavaFX GUI, I have to use some split panes. But a problem occurs: I have to make that when user click on a button on the split pane, this split pane hide one of this sides panes, and need one more click to reset this side pane as visible.
I…

NatNgs
- 874
- 14
- 25
1
vote
1 answer
Split Pane divider change listener javafx
I have two split panes which both have a vertical split . I`m trying to add a listener between the two divider so that when i move one split pane the other will move .
user6129465
1
vote
2 answers
Is there a split pane library for angular that does not rely on other frameworks other than AngularJS?
I'm looking for a split-pane library - something that will let me have 2 tables on a screen, and the user can drag the middle divider to show more of one table or the other.
I know there are libraries out there that do this, like the shagstrom one,…

Katie
- 305
- 3
- 11
1
vote
0 answers
JavaFX: Button jumps off the binding with SplitPane.Divider
I have SplitPane with two AnchorPane (left and right side). There are Label, TextField and Button on each AnchorPane, they are arranged in one line. Label must bind to the left side AnchorPane, Button to the right and TextField must be stretched…

klapeyron
- 502
- 7
- 18