I have a problem with JScrollPane – it looks like it lays over my JTable.
I have made a JTable without JScrollPane and everything seems to be fine – everything gets loaded as I wish and so on – but when I try to add JScrollPane everything goes wrong – only the column names are showing.
This is my code…
projectTable = new javax.swing.JTable();
ProjectTableModel ptm = new ProjectTableModel();
projectTable.setModel(ptm);
jScrollPane1.setViewportView(projectTable);
Is it a problem with positioning components? Could someone please help me with this problem.
The Oracle
JTabletutorial contains a section about ‘Adding a table to a container’, where the container in the example is aJScrollPane