Great, thanks! I actually also found that repaint() *does* work if the backing objects are self-updating (ie. the values returned change without the object itself being modified).
On Tue, Jun 12, 2012 at 2:39 PM, Roger Whitcomb <[email protected] > wrote: > Hi Joseph, > Use the List.update method with the same (updated) object. So, the > flow would be: > List<Object> list = getTableData(); > Object obj = list.get(index); > modify obj > list.update(index, obj); > > And that's all you have to do. > > ~Roger > > On Jun 11, 2012, at 6:21 PM, Joseph Paterson wrote: > > Hello, > > I have a TableView with some data in it. I've had no issues adding new > data via getTableData().add(...), however I'm not sure how to notify the > table if any of the *existing* data has changed. I've tried > tableView.repaint() with no luck. The data in the table is a simple POJO. > > Many thanks in advance! > > Joseph. > > >
