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
2
votes
0 answers
Is it possible to use React Split Pane with more than two panes?
We are using react-split-pane in our project, but it is not working for more than two panes.
In the page we should have three panes with two resizers, but the third panel is not shown using react-split-pane so I suppose is not suppported.
I also…

ritaa27
- 63
- 4
2
votes
1 answer
How to detect mouse-dragged event on SplitPane Divider in JavaFX
I'm using SplitPane in JavaFx to split two nodes with a divider. I am looking for a way to differentiate between two cases. One case when the divider is moving responsively on screen width changes, second case is when I'm using the mouse to drag the…

user14165899
- 23
- 3
2
votes
1 answer
react split pane shows above other components when using `display: flex`
For my new react project I need a split pane.
I am using https://github.com/tomkp/react-split-pane for this.
After I implemented everything, I wanted to my header above so it would look like this.
So I added the header to my root…

Ironlors
- 173
- 3
- 19
2
votes
1 answer
Building BorderPane with SplitPanes and minimize areas to hide nodes
I am trying to build an BorderPane with SplitPanes to get a BorderPane which has resizeable areas by dragging the mouse. I have write some code which is working. But i cant hide the areas of the SplitPanes if there any nodes inside.
First of all i…

user6266369
- 183
- 1
- 15
2
votes
1 answer
Javafx BorderPane with split bar
How to put a split bar in between the left node and center node of a BorderPane? The UI should works as below:
1) When the application windows is resized horizontally, the center resizes horizontally. When the windows resized vertically, the…

len
- 376
- 2
- 19
2
votes
1 answer
How to know if Ionic split pane is opened or closed?
I'm trying to adjust some CSS properties depending on the state of the split pane, I mean, if it is opened or closed. I can detect when its state changes using ionChange event on the view, but I can't know if it was opened or closed. Is there a way…

chick3n0x07CC
- 678
- 2
- 10
- 30
2
votes
0 answers
SplitPane Divider Position changes on its own
I have a SplitPane that is behaving strangely. It is "spontaneously" moving without interaction from the user.
Here is the sample FXML layout:

Zephyr
- 9,885
- 4
- 28
- 63
2
votes
3 answers
How can I create two dimensional SplitPane in Java Swing
I want to create a two dimensional JSplitpane like design in Java swing.
Such that the JFrame will be split into 4 parts, and upper and lower parts are separated by another split, and left and right part are separated by yet another split line. Also…

Sukhbir
- 553
- 8
- 23
2
votes
0 answers
Load dynamic splitpane in javafx using fxml files
I have a main jfx class having splitpane.
On the lefthand side, I have a treeview and right side is blank. This is created using main fxml file. Now the requirement is the right hand side of splitpane should be loaded based on event of the treeitem…

Sanjib Behera
- 101
- 1
- 13
2
votes
1 answer
How to replace a scene component with a button click inJavaFX
Am new to JavaFX and changing only a component of a scene on button click while other components of the scene remain unchanged is giving me hard times.
I have a splitpane with 2 divisions. One part containing a HBox with buttons and a VBox on the…

David Kimz
- 31
- 2
- 4
2
votes
1 answer
JavaFX Splitpane Inside of Splitpane Set Divider Positions
I am designing a JavaFX GUI in which there are multiple splitpanes embedded inside of each other. I want to be able to reset the divider positions back to their initial values if the user selects an option to reset the view. The problem is that the…

Rob Merrick
- 86
- 1
- 8
2
votes
1 answer
Preventing a side of a SplitPane from resizing in javafx
I have a layout where I have a vertical split pane that divides two components. The component inside the right side of the splitpane I want to grow (it's an image), but the components on the left side of the split pane I want to remain in the exact…

John
- 347
- 1
- 7
- 14
1
vote
1 answer
Windows Terminal : Split pane with different root path (Powershell)
I'm currently using Windows Terminal with PowerShell, and I wanted to find a solution for remembering the different terminals created between sessions, as the internal Visual Studio command-line tool doesn't provide this functionality (If it does,…

InfectedJapanese
- 13
- 3
1
vote
1 answer
Need an algorithm to traverse a component tree
I'm creating a React app that has a "SplitPane" component that is basically a div split horizontally or vertcally (The divider in the middle can be dragged for resizing):
____ _________ _________
| | | | | | | |
|____| …

Bud Linville
- 193
- 1
- 10
1
vote
1 answer
What is the Jetpack Compose alternative to JSplitPane?
In Swing I use JSplitPane to create a region with a tree view to the left(leading) and a region with a hex viewer to the right(trailing) where the user can move the divider to adjust the space each get.
Since Jetpack Compose is still relatively new,…

Hakanai
- 12,010
- 10
- 62
- 132