TableModel
Hello
I'm using a JTable. While the App is running I can add or remove rows from the TableModel. But If I assign a new TableModel to the old, nothing happens. I want that the new Content, the new TableModel rows, are visible immediately.
After I assigned the new TableModel to the old, what I have to do, to see the rows of the new TableModel immediately?
code:
...
JTable table = new JTable(tablemodel);
...
...
tablemodel = another_new_tablemodel;
//now, what I have to do, to show the another_new_tablemodel rows?
Thanks Raphael.

