Im currently wanting to construct a table type of layout for JPanels. I found out there is a TableLayout for Java but I don’t how to import it. On the other hand i found out there is a GridBagLayOut which also can construct a table like layout.But it seems more complicated. Any advice.
Share
Here is an SSCCE of using a TableLayout, (Introduction to TableLayout)
The required jar for the TableLayout can be downloaded from here
Also have a look at : A Visual Guide to Layout Managers ,In case.
In case you go for GridBagLayout, have a look at : How to Use GridBagLayout