selecting JTable row after model changed
Hello
I have a table, and I need to change data in the underlying model and then select a row...
so i tryed something like this:
table.getModel().addTableModelListener(new TableModelListener(){
publicvoid tableChanged(TableModelEvent tableModelEvent){
...
table.addRowSelectionInterval(i, i);
...
}
});
..but that doesn't work, probably because when TableModelEventFires, the table is not yet rendered...
so, the question is, is there an event that fires right after the whole table has been drawn, and if not, how do I write one?

