I am trying to call a method from another class that will add data to a jTable but the data doesn't show up in the table. If I add data from within the class that creates the table model, it works fine.
This works fine from Gui_Main:
This does
not work when called from the Product class:
I've been able to confirm that the program flow is hitting the addData method by inserting a variable in the addPart method and showing it in the addData method. I've tried doing table refreshes and all other kinds of
Java acrobatics to make this work based on other researched examples but have so far come up empty. Can anyone point me in the right direction?
Thanks!