Hello,
I'm having a hard time getting a new row to show in the view after a filter has been applied to the data.
My JTable has a custom TableModel which extends AbstractTableModel. I've been able to successfully filter the data using:
RowFilter.regexFilter()
Now that the view has changed, I'd like to be able to insert/delete a row and have it show in the view immediately but what's happening is, the (new) row is getting updated in the underlying model but the view is not updating.
There's got to be a way to do this...but how?
Thanks for the help