I realized a JTable with a custom AbstractTableModel for implementing paging.
I wanna show 5 item per page, but I\'ve a problem: if I have N item to show (with N wh
Make sure your model's getRowCount method is inline with what you want it to do. The getRowCount method should return an acceptable number for your table, so that it doesn't call getValueAt for any rows that don't exist. So, if you have no row 14, your row count shouldn't be that high.