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
0
votes
1 answer
How can I create SplitPane that right side contains tabs for displaying on left side?
I want to create a splitpane like this:
how can I make this. when I add tabs I can add them only in the positions:
TOP , BOTTOM , RIGHT , LEFT.
This is what I have:
How can I do this?

Davis8988
- 298
- 4
- 16
0
votes
1 answer
How do I set up two vertical split panes so that dragging each will not affect the other?
I am trying to set up a UI with three split panes. The first two are vertical panes, on the left and right side of the screen. One side of each split has a title pane. The user can select items from these panes to include in fields in the central…

01secn
- 1
- 2
- 2
0
votes
1 answer
Printing SplitPanes within a FlowPane prints from the second page half page down
Within a flowpane I have several splitpanes and hand over the splitpanes as node to the print function.
The first splitpane is printed on the A4 side up, any more splitpane on the following pages by approximately half a page later.
Note: the…

Gerhard Laib
- 53
- 8
0
votes
1 answer
split pane jquery plugin for touch devices
I am using the split-pane.js Jquery plugin for a vertical split-screen view in a website with draggable widths. Plugin and Demo
The only issue I have is: It's not working on touch devices.
Is there any way to add this functionalty?
I already tried…

kilian
- 166
- 1
- 9
0
votes
1 answer
Accessing the panes inside a scene in JavaFX?
I found here some similar questions, but none of them seem to be a solution to my problem.
How can I access the different panes in the structure of a scene?
The goal would be:
I have a split pane in the scene, which is put on to a border pane. In…

user3435407
- 1,019
- 4
- 15
- 31
0
votes
1 answer
Why do identical 2 jsfiddles result in different dojo layout at 1.8 release?
I am migrating some of dojo 1.6 code to dojo 1.8 and I could not get the layout to behave the same. So I stripped the code to bare minimum hoping to nail down the problem and ended up with 2 identical jsfiddles. I copied the code from one into…

user3254414
- 7
- 1
- 3
0
votes
1 answer
JavaFX 8 wrong SplitPane's diviser positions
I use a splitPane with 4 Nodes inside without size limits. But when I try to split it, it doesn't work.
Code Used
m_Split.setDividerPosition(0, 0.25);
m_Split.setDividerPosition(1, 0.5);
m_Split.setDividerPosition(2, 0.75);
double tab[] =…
user4049325
0
votes
1 answer
Remove child from parent created in FXML
I have a series of nested Split Panes created in an FXML file. I have buttons which set the max size of their children to zero, effectively hiding them.
This leaves the Split Panes divider there, and causes issues when re-sizing as the Split Panes…

Mercurtius
- 3
- 1
- 3
0
votes
1 answer
JavaFX: avoid specifying absolute width
I have got a SplitPane in a SplitPane -- both horizontal. I would like to avoid specifying absolute width/height. When I don't specify width/height, the second SplitPane is not shown:

user3111525
- 5,013
- 9
- 39
- 64
0
votes
1 answer
JavaFX using width/height listener to update controls
I am using JavaFX SplitPanes on my application and I need to change the divider positions when the height and width changes, because I want to keep the divider positions fixed. My code is as follows:
scene.widthProperty().addListener(new…

Cobbles
- 1,748
- 17
- 33
0
votes
2 answers
infragistics - xamDockManager - ContentPane - height is not adjusting
I am not able to set the height of my ContentPane inside a SplitPane. I am using Auto, but it is not able to set the height accordingly.
I have 2 contentpanes in a splitpane. I need the two content panes relative in size. The heights should depend…

voonna
- 741
- 3
- 10
- 24
0
votes
1 answer
Menubar not added in a java split pane
I have written a small test program which creates a split pane in which one of the pane's is a text area. I have added a meubar and menuitems to the pane but i donot see them in the gui that is created.
Could anyone pls point out what the wrong…

Vijay
- 65,327
- 90
- 227
- 319
0
votes
0 answers
Windows resize while dragging
My application is an Horizontal Flow SplitPane in an AnchorPane. On the right side of the SplitPane I can plot windows by left click on a button.
I can also arrange these windows horizontally or vertically to fit the parent container prefSize, and…

Alberto acepsut
- 1,972
- 10
- 41
- 87
-1
votes
1 answer
how to implement master detail layout using ionic 3 and split pane component?
I am new to Ionic 3. Can someone please explain how to implement master detail layout using ionic 3 and split pane component? If you can show with some working example it will be very helpful.

Chaitra R
- 9
- 7
-1
votes
1 answer
Java resizing window including a JSplitPane : fixed size panel?
I have a JSplitpane in my software and two JPanels inside it, and I would like the height of the divider to ajust with the screen resize
Heres what happen when I resize :
I have been looking everywhere for this and I know it must be easy to fix but…

Alde
- 428
- 1
- 5
- 20