auto refresh JTable sorting when row being updated
843806Dec 3 2007 — edited Dec 3 2007I make my JTable able to perform sorting by merely using :
jTable1.setAutoCreateRowSorter(true);
Whenever there is an updated to a value in a row, how can I instruct my JTable to perform sorting again? So that JTable will be sorted, according to the latest updated row value.
Thank you.