I have a setLayout(new GridLayout(5,5,3,3));
5 rows and 5 columns. On the first row I want one big row. You know how in excel, where you would merge cells. So I just want to merge the 5 columns only on the first row. I am putting a JLabel on the first row, and its very annoying that I need to have multiple JLabels for each grid cell and make sure spacing works out well.
Is there a way to do this on GridLayout? Or I am stuck with 5 rows and 5 col strictly?