Within Netbeans I have created a table and added columns "film" and "director" to it. This works fine, but I can't see the table properly only a small section of the last row, which, although alerts me that all rows have been added. I still can't see them fully.
Code and screenshots are below.
Code
private void jButton3ActionPerformed(java.awt.event.ActionEvent evt) {
DefaultTableModel MovieTable = (DefaultTableModel) MovieTable.getModel();
MovieTable.getDataVector().removeAllElements();
Column1 ="Film1";
Column2 ="Director";
MovieTable.addRow(new Object[]{Column1, Column2}); }