Hi ,
I have some 5000 rows in the table .I select and edit some of them .What i want to do now is to refresh the table with updated records.I want to know is there any way by which i can reload only updated records and refresh rest of the table?
Printable View
Hi ,
I have some 5000 rows in the table .I select and edit some of them .What i want to do now is to refresh the table with updated records.I want to know is there any way by which i can reload only updated records and refresh rest of the table?
when using setValueAt(Object aValue, int rowIndex, int columnIndex) of tablemodel (see http://java.sun.com/j2se/1.4.2/docs/...ableModel.html) a tablemodelevent is created with just that cell. the corresponding listener should then only update the view for that cell.