Tagged Questions

MiG Layout is a free and open-source layout manager for Java Swing, SWT, JavaFX2, Fantom, Qt and other GUI toolkits.

learn more… | top users | synonyms

11
votes
4answers
5k views

How to use MigLayout?

I read some information about Java layout managers and the recommendation was MigLayout. My problem is, that I didn't found any tutorial or easy step-by-step documentation. So I want to know how this ...
10
votes
2answers
868 views

Is MiGLayout going to be included in Java 7?

All I could find so far is this (open) Sun bug/RFE entry with 426 506 votes: http://bugs.sun.com/view_bug.do?bug_id=6530906 It's in third place in the list of RFEs. Tons of people have stated that ...
8
votes
3answers
231 views

How to center a component on a row containing multiple components with MiGLayout

I started using MiGLayout about a month and half ago and everything is simple and works great. There's only one issue I still have that I haven't been able to fix. Let's say I want to have a row that ...
8
votes
1answer
631 views

How to … with MigLayout

I am trying to create a layout that will looking like: +---+--------+---+ | | | | | | | | +---+ +---+ | | | | | | | | +---+--------+---+ Central ...
5
votes
1answer
31 views

When using MigLayout, how would a 3rd int parameter to `add` affect layout?

For example: layeredPane.setLayout(new MigLayout()); layeredPane.add(component, "pos 50 50, width 100, height 100", 0); The 0 in this case does affect the component's layering, but I can't seem to ...
5
votes
2answers
888 views

MigLayout JTextArea is not shrinking when used with linewrap=true

If I use a JTextArea with MigLayout like this: MigLayout thisLayout = new MigLayout("", "[][grow]", "[]20[]"); this.setLayout(thisLayout); { jLabel1 = new JLabel(); this.add(jLabel1, "cell 0 ...
4
votes
2answers
640 views

How do I layout a panel on the top of my Dialog so that it has two buttons?

I need to layout a panel on the top of my Dialog so that it has two buttons (Save and Cancel). I want the save to be on the left and Cancel to be on the right side. I've created a JPanel using the ...
3
votes
5answers
62 views

Painting over the top of components in Swing?

I have a JPanel added to a JViewport, and the panel has several other panels added to it. I'm trying to implement a dragging selection, where you can select more than one component by dragging the ...
3
votes
1answer
55 views

Can't add JPanel to JFrame on the fly

I have to views: MainWindowView (extends JFrame) ScanOptimisationView (extends JPanel) So, I have the combobox in MainWindowView class. And I create ActionListener and bind it to this combobox. ...
3
votes
1answer
136 views

JCombobox dropdown visiblity issue?

I have a root panel (2 rows, 1 column) which has panel P and a label L in it. P has a JComboBox B in it. Whenever I click on B, the resulting dropdown shows-up behind L. How do I fix this? I played ...
3
votes
4answers
508 views

Line wrap in a JTextArea causes JScrollPane to missbehave with MiGLayout

I am having trouble with the same thing as this guy: MigLayout JTextArea is not shrinking when used with linewrap=true and I used the solution described in one of the answers; to set the minimum ...
3
votes
5answers
263 views

Is there a way to insert a “cell” in MigLayout?

I am trying to create a panel that can dynamically insert components based on events. The panel is row based with variable amount of components per row. However, I have problems inserting components ...
3
votes
5answers
2k views

Swing - how to mix JTextField and JTextAreas and have same visual appearance?

I am using miglayout to create a form in which there are JTextFields (short input answers) as well as JTextAreas (Longer answers). The problem is twofold. The border placed around a Scrollpane ...
3
votes
1answer
1k views

Java: MiGLayout: How to use `hidemode`?

I am starting out using MiGLayout for my GUI design, and one of the feature I would need is to show/hide certain components based on the state of other components. I was going to code this myself, ...
3
votes
2answers
776 views

Span/Grow bug in MigLayout?

The following is close to what I want, and does what I expect: import javax.swing.JComboBox; import javax.swing.JPanel; import javax.swing.JFrame; import javax.swing.JLabel; import ...
2
votes
1answer
37 views

Need button to stay at the bottom of my dialog

I originally posted this question on the miglayout forum and after 534 views and no answers, I decided to try it there ;-) I tried to extend the "initial example" from the MigLayout whitepaper in ...
2
votes
2answers
42 views

JTextArea in MigLayout causes NullPointerException

I'm not a pro with swing layout managers and this behavior is completely baffling me. Essentially I can't add a JTextArea or JTextPane to my MigLayout without getting a NullPointerException. I ...
2
votes
2answers
79 views

Intercepting or delegating events with overlapping components

I have two JPanels equal in size, one over the top of the other. The top layer serves as a drag selection panel, and the other one has other components added to it. My problem is that the mouse event ...
2
votes
1answer
66 views

MigLayout: Only window displayed when trying fullscreen

Here is code: ScreenHeight = Toolkit.getDefaultToolkit().getScreenSize().height, ScreenWidth = Toolkit.getDefaultToolkit().getScreenSize().width; JFrame MainFrame = new JFrame(); ...
2
votes
1answer
51 views

Help with transformation of Drawed Layout to MigLayout

I’m making a sample application that uses MigLayout in a very cool way. Unfortunately after reading through the quickstart and the whitepaper I still have questions and can’t do my desired layout. The ...
2
votes
1answer
91 views

MigLayout - Need help on how to use the dock parameters (or need an alternative)

I just started using MigLayout for SWING in Java and I'm really liking it so far. The only thing, though, is that the dock parameters don't seem to work the way I thought they worked and I can't ...
2
votes
1answer
231 views

Help with problematic layout using MigLayout

I've been trying to align some objects in my java project in a certain way but with no success. I am using MigLayout for the layout and this is how I would like it to look: The sidebar should have ...
2
votes
1answer
206 views

How do you make MiGLayout behave like Wrap Layout?

I'd like to replicate the example shown here: Wrap Layout using MiGLayout. I have tried some combinations, but I'm having a hard time making the buttons wrap automatically to new rows as the ...
2
votes
1answer
629 views

Transparency issue with overlay panel

I posted this question originally in the MigLayout forum since it is to some extend specific for that specific of Layout Manager, I'd say. Unfortunately it's a week old now without any comments at ...
2
votes
1answer
402 views

Java Swing MigLayout, centering two elements inside a spanned row

I'm working on a MigLayout form with 3 columns and 4 rows, like this: "wrap 3", "[15%] 15px [45%] 15px [40%]", "20 [] 15 [] 15 [grow,fill] 15 []" Now my goal is to have it look like this: ...
2
votes
4answers
1k views

MigLayout usage

A question for those familiar with MigLayout sorry couldn't think of a more appropriate name for the question... I'm trying to create a layout that will end up looking like the following: ...
2
votes
1answer
2k views

How do I use MiG Layout with Eclipse?

I've been Googling and checking on Stack Overflow and nothing has helped... hopefully someone can. I usually just write my code by hand, but I'm working on a Java project that has a GUI aspect and I ...
1
vote
1answer
33 views

Java Vertical Layout?

I need to position a JLabel over some JButtons, vertically, like a game menu. They should all be centered. I already downloaded MigLayout, but I'm not sure how to use that, so I just want a way to ...
1
vote
1answer
16 views

Force shrinking of MigLayout-Component inside JScrollPane

I have a Component that uses MigLayout as its LayoutManager. It is set to grow inside the JScrollPane to occupy the whole available width. So if I resize the appliation's frame, the JScrollPane is as ...
1
vote
2answers
77 views

Java -> MigLayout how to set gap's

I have a small problem, i started a new GUI project using MigLayout and i love the layout but one thing i cannot figure out is how to remove all gaps between components them selves, components and ...
1
vote
1answer
38 views

How delete JPanel from JFrame before adding new one

I have JPanel has already added to JFrame. And I have dynamically added JPanel. After adding JPanel on the fly it stay near the JPanel added before. How can I delete previous JPanel? PS I also think ...
1
vote
1answer
68 views

Java JTable and JToolBar resizing strangely

I noticed very strange behavior of my program today. Basically I have JToolBar uder which is JScrollPane with JTable. Both inside JPanel inside JFrame. Every container using MigLayout. Now, if I ...
1
vote
1answer
43 views

JLabel icon does not display with clojure and miglayout

Still pretty green on clojure, java, layouts etc. On a miglayout I have this line to insert an icon on Jlabel: (JLabel. "" "C:\\MyPriject\Pictures\\TCM00.jpg") I am getting the following error: ...
1
vote
2answers
72 views

Setting size of JPanel using MiGLayout

I'm using the MiGLayout to create several different JPanels, however I'm having a problem resizing one of them. Below is a diagram showing what I want to achieve: ...
1
vote
1answer
121 views

MigLayout, disable JButton width resize

I have a button layout something like this But the problem is Text 1 and Text 2 is changing dynamically which screw up the whole button layout. For example, if the Text 2 become longer than the ...
1
vote
1answer
37 views

Lobobrowser HtmlPanel in MigLayout not rendering until resize

My MigLayout Dialog uses a HtmlPanel to display a local html file in it. However the html file is not displayed until I resize the dialog. It seems that the HtmlPanel is not fully rendered yet as the ...
1
vote
1answer
87 views

SWT Miglayout Problem

I'm using miglayout in my swt application but when the content of a text field is large it tends to push the width/height of the text field out of view, this issue also affects table component with ...
1
vote
2answers
144 views

Cross platform UI spacing/padding

I have written a Java UI using the SWT UI library and the MigLayout layout library. This page shows screenshots of the UI on Windows, Linux and OSX: ...
1
vote
1answer
58 views

Cells sized independently of rows MigLayout

So I am designing a rather simple layout for an item manager program which i am making in Java with Swing. Typically, the cells light colored row would all stretch down to meet the blue. However, ...
1
vote
2answers
464 views

How to use a separator with MigLayout

This is a MigLayout-newbie question. I'd like to know how to draw a separator from the end of a label across the width of a panel. Here's my example code: package com.ndh.swingjunk; import ...
1
vote
1answer
137 views

Remove gap to Parent Containers Border in Miglayout

first a picture for visualizing the problem As you can see, there is a huge gap to the parents container on the right and left side of the panel with the arrows, which should not be there. I do not ...
1
vote
2answers
127 views

Any way to use a MigLayout in GWT?

There's a question about using layout managers in GWT, which was however answered in the sense that no direct porting of Swing apps is possible. But I don't need this, I only want to use a sane way of ...
1
vote
1answer
152 views

Miglayout + hidemode 3 = unwanted autoscroll when showing controls

I'm using 'hidemode 3' in MigLayout so that hidden components aren't visible at all (and don't have any impact on layout). I'm using this so that I can show inline errors underneath textboxes, which ...
1
vote
1answer
199 views

miglayout: how to ignore a component height

Is there any way to tell MigLayout to ignore a component's height? Here's a test example: I have an oversized component (the "big" button in the upper right) in the first row, and a JPanel which ...
1
vote
1answer
298 views

JSplitPane + MiGLayout: how to enable autoresizing

I'm doing something wrong here: I want to have two JButtons in a JSplitPane in a JPanel in a a JFrame, where the buttons fill the JSplitPane. Here's what I get when I resize the JFrame: The ...
1
vote
1answer
157 views

How to prevent MigLayout from exceeding a container's bounds

I'm trying to construct a simple status panel using MigLayout as follows: setLayout(new MigLayout("fillx", "[][p]")); // removing constructor args makes no difference add(createStatusLabel(), "span ...
1
vote
1answer
475 views

Open source Swing GUI builder that uses MiGlayout

Is there an open source Java swing GUI builder that uses MiGlayout as it's layout manager? I've been trying to learn to make Swing GUI's by hand using MiGlayout but feel it would be easier to learn ...
1
vote
1answer
140 views

miglayout question: column constraints

I have a miglayout for a window where one of the columns was specified as grow but I need to modify that so it basically means "grow, but limit to _ pixels". Is there a way I can do this?
1
vote
1answer
91 views

How do I get a button to align to the right in MigLayout

I am adding a button to a panel using Miglayout, and try what I might, I cannot get it to go to the right end of the panel. It insists on going flush left. Oddly, the demo is kind of short on such on ...
1
vote
1answer
408 views

mig layout - span and grow/push problem

i want 3 components laid out on 2 lines, so that the bottom component and the top-right component use all available horizontal space. JFrame frame = new JFrame(); ...

1 2