I am trying to make a UI with two tables. One of the tables is a 2D table with names and tickboxes. The other is a 1D tables that is (supposed to be) empty until the user clicks on one of the tickboxes on the first table. When the user does, the second table gets the name of the name corresponding to the tickbox on the first one.
In short, when the uses makes a choice, the second table is supposed to show the chosen choices.
However, my problem is that the second table is not doing this, it is simply showing (for some reason) numbers from 0 to 5.
Here's a picture of the UI (I tried ti embed, but since I am new, I am not allowed). http://i.stack.imgur.com/hTSFK.jpg
Here is the tableChanged() method that describes how the second table is supposed to be changed when a tableModeEvent happens (on the first table):
public void tableChanged(TableModelEvent e) {
int firstRow=e.getLastRow();
if(e.getSource() == table){
Object value=table.getValueAt(firstRow, 0);
orgModel.setValueAt(value,orgIndex,0);
orgIndex++;
}
if(orgIndex>5){
orgIndex=0;
}
}
orgIndex is the index of the second table. It is declared outside the method so I can keep track of it over several TableModelEvent calls. orgModel is the model of the second table. Table is the first table.
I've added the TableModelListener to Table in the UI constructor (table.getModel().addTableModelListener(this);).
So my question is, what am I missing? Am I simply not understanding TableModels correctly?
Thanks in advanced.
SharedModelDemomay be worth a look. – trashgod Sep 30 '11 at 23:00