Re: Change data in jTable
Posted By:
Robert_Lybarger
Posted On:
Thursday, May 10, 2007 06:34 PM
once you have a table model, you need to call some method in that class to set a new object/value at a given row/column, and then usually call something like "fireTableDataChanged()" to signal that the view needs to update itself ... this is probably what you are missing. You do *not* reinstantiate the jtable object. (the mind boggles to understand why you'd think that would be the right thing, but then I was new once, too.)