Questions tagged [jxmultisplitpane]
7 questions
4
votes
1 answer
How to use MultiSplitLayout in SwingX?
I'm trying to use MultiSplitPane and MultiSplitLayout from SwingX. I know how to use MultiSplitLayout with the method parseModel (see http://today.java.net/pub/a/today/2006/03/23/multi-split-pane.html). But I don't understand the mechanism without…

paranoia25
- 626
- 1
- 5
- 23
2
votes
1 answer
JXMultiSplitPane going bonkers when I switch tabs
I'm using JXMultiSplitPane (from SwingX 1.6.2) to implement a three-pane horizontal interface. In the center pane is a JTabbedPane with two tabs: one with a JTextArea (in a JScrollPane, of course) used for entering Markdown code and the other a…

James Jensen
- 363
- 3
- 8
2
votes
1 answer
jxmultisplitpane: how to use?
I found a javadoc for JXMultiSplitPane but I'm clueless. How would I use this to display 5 JPanels lined up horizontally with splitters in between?

Jason S
- 184,598
- 164
- 608
- 970
1
vote
1 answer
MultiSplit Panel disaapears if one of the panels dragged too far
I am using the SwingX MultiSplitPane, JXMultiSplitPane. The pane has three separate panels: a left panel, a middle panel, and a right panel. If I expand the left panel too much, it causes the right panel to disappear and I can't get it back.
Is…

Elliott
- 5,523
- 10
- 48
- 87
1
vote
2 answers
Swing layout manager/solution to replace dynamically created and nested split panes?
I'm working on a text editor in which the user is free to divide the editor window vertically or horizontally any number of times (ie, into any number of panes). A single window can be divided both vertically and horizontally (for example, 2 rows,…

the-konapie
- 601
- 3
- 10
1
vote
2 answers
Issue arranging new leaves in MultiSpliPane (with SSCCE)
I am creating an app which adds Tables to a Form and arrages them in a specific layout. I'm creating a new leaf in MultiSplitPane everytime a new table needs to be added to the form, and I'm adding the new table to the leaf. Everything works fine…

Igor
- 1,532
- 4
- 23
- 44
0
votes
1 answer
How to add new Split (row) to a MultiSplitPane in Java?
I have a simple MultiSplitPane in java. It has 1 Row (split) and 2 nodes (Leaves) in it. How can I add another row under the existing one.
Here's the code that creates the MultiSplitPane and the 2 Leaves:
List children =
Arrays.asList(new…

Igor
- 1,532
- 4
- 23
- 44