I was wondering in using the Layout (MigLayout) could I split into 2 rows instead of two columns?
panel.add(fname,"split 2");
panel.add(Fname,"wrap, pushx, growx");
panel.add(lname,"split 2");
panel.add(Lname,"wrap, pushx, growx");
panel.add(desc,"split 3,top,gaptop 3,gapright 0.5");
panel.add(new JLabel("PlaceHolder"),"top,gaptop 3");
panel.add(new JScrollPane(Desc),"grow,push,wrap");
panel.add(C,"split 2, Right");
panel.add(D,"wrap");
I wanted the label "PlaceHolder" to be below the text description instead beside it is there a way to accomplish it? :)
Here is a code snippet that shows a two-column layout with one label/field pair per row (at the top) and the two other labels below each other and to the left of a row spanning textArea:
Couple of thingies to note: