Questions tagged [splitpane]

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.

91 questions
1
vote
1 answer

Javafx Splitpane divider positions on resizing the parent pane

I have a splitpane with three children, but I want to show just the 2 top or the 2 bottom children at a time. So I implement a sliding animation, which slide the splitpane in a parent pane up and down. The sliding animation works fine, but when I…
Studiosus
  • 143
  • 1
  • 11
1
vote
1 answer

JavaFX: Splitpane columns not equal

I want to build a javafx application, that consists of 3 big columns about the whole scene. The columns should be resizable, so i used splitpane. I added 3 borderpanes to the splitpane, every with the same preferred width (The scene is overall 3840…
AKR
  • 541
  • 1
  • 3
  • 19
1
vote
1 answer

JavaFX: SplitPane Mouse Handling Breaks After Displaying an Application-Modal Stage

Mouse handling on the SplitPane and ScrollBar controls breaks after displaying an application-modal Stage. The problem goes away after the application window loses and regains focus. Does anyone know a solution or workaround to this problem? In…
davidrmcharles
  • 1,923
  • 2
  • 20
  • 33
0
votes
1 answer

Combine multiple split panes into single window with tabs in IntelliJ IDEA

I have multiple tabs in multiple panes, but when I've move from my widescreen to my laptop, the panes no longer works well at half-width. Can I keep all the existing files open, but move/merge/combine them into a single pane? (Without having to drag…
KyleMit
  • 30,350
  • 66
  • 462
  • 664
0
votes
1 answer

Creating Vertivcally/Horizontally Split-Div in Javascript

For a while now, I have been trying to create dynamic-resizable-split-panes in javascript (something like vs code). I successfully created the dynamic split panes. It creates the split panes by checking the parent element and its children and…
0
votes
1 answer

Stop dragging left in resizable split view

I have resizable split view where I can drag the splitter to resize the left and right sides. But I'm unable to stop dragging left at a point. But I can set a width to stop dragging right. Here is the code snippet which stops dragging to…
0
votes
0 answers

How to set the splitpane's pane to a fixed height value?

I follow the splitpanes docs: 1 2 3
qg_java_17137
  • 3,310
  • 10
  • 41
  • 84
0
votes
0 answers

How to set the splitpanes split line style to a grey solid line?

I follow the splitpanes tutorial, get two panes with the split line: But I want to have the split line style like below, a grey solid line. I also follow the tutorial, set the custom CSS for splitpanes, but do not work, my code is below:
qg_java_17137
  • 3,310
  • 10
  • 41
  • 84
0
votes
1 answer

Adding drag drop functionality in Vue Splitpanes

I am trying to add Drag-drop functionality in Vue Splitpane. I was trying several drag-drop packages i.e. vue-smooth-dnd, Vue.Draggable, etc. But, those dnd packages were conflicting with the splitpane package as it strictly maintains the structure…
user1896653
  • 3,247
  • 14
  • 49
  • 93
0
votes
1 answer

iterm2 combine tabs into split pane

I am trying to combine two iterm2 windows into a single window with a split pane. I can combine them into one window with two tabs but I don't know how combine those two tabs into a split pane in a single tab. How can I do this? Thanks in advance…
hunhoffe
  • 36
  • 4
0
votes
1 answer

JavaFX splitpane - Prevent unwanted divider position changes

I'm trying to find a way to prevent divider positions from changing when one of the dividers is constrained by a maxWidth property. In the example I'm clicking a button to minimise a panel, and want the central pane to resize to accommodate the…
halfscarf
  • 3
  • 1
  • 1
0
votes
1 answer

I'm trying to figure out how to make my VBox inside a BorderPane expand with the BorderPane/Stage, but still stay within a certain bounds

I am trying to figure out how to make my VBox, only go to the size of 300 pixel's wide, but i would like to have it at say 250 pixels wide when the program is initialized, then when the user clicks full screen, I want it to expand, but not…
Tripal
  • 1
  • 2
0
votes
0 answers

JAVA - JavaFX - Deals with Nodes(e.g.: a JButton) calling another Stage

I want to have a Main Stage (Main GUI) that will include a Menu Bar at the top, then consist of either an AnchorPane with a vertical SplitPane[split happens at 350pixels] (which contains another horizontal SplitPane on the right side, giving me a…
Tripal
  • 1
  • 2
0
votes
1 answer

How can I make the card component work with react-split-pane component?

Here is my code. My problem is, how can I use the card component to fill the first pane of the SplitPane without using h-100 class? It is because when I use h-100 class for the Card component, it spoils the layout when the users click on the input…
The KNVB
  • 3,588
  • 3
  • 29
  • 54
0
votes
2 answers

Material UI Fab Button stays under left split-pane

How can I make the Fab button totally visible? Left half of it is always under left pane. Tried to increase z-index, but didn't work. codesandbox
killjoy
  • 864
  • 17
  • 31