jTable Data
First...new to Java....I have a form which collects information, all address type info. There are 6 different types of addresses. There are 24 possible address fields. The address types all collect similar info...but not the same. The 24 fields is an aggregation of all address fields. For the fields that dont pertain to the tab I am i just set the value to null. Each address type is on its own tab. I have assigned a prefix to each tab like following: tab1 tab2 etc. What I want to be able to do is to collect the information on each tab and assign it to a row in a jtable. the rows would be filled even if it is only null data. I also would want to take the data from the jTable and repopulate the tabs...assuming of course, the table is still in memory.
So..based on the prefix I assign I want the forms/jTable to be smart enough to save the values to the right row in the table and to repopulate itself based on the same prefix. Is this doable?
Thanks

