I'm using a JTable :

public class MyPanel extends JPanel {

public MyPanel () {
   init()
}


init () {
DataModel model = new DataModel();
JTable table = new JTable (model);

TableColumnModel tcm = agentsTable.getColumnModel();
        tcm.getColumn(FIRST).setPreferredWidth(15);
        tcm.getColumn(SECOND).setPreferredWidth(100);
        tcm.getColumn(THIRD).setPreferredWidth(200);


        JScrollPane scroller = new JScrollPane();
        scroller.getViewport().add(table);
        this.add(scroller, BorderLayout.CENTER);
}

}


public class DataModel extends AbstractTableModel {

public final static int FIRST = 0;
public final static int SECOND = 1;
public final static int THIRD= 2;

...

}

the problem is every time i add a row to the model, the TableColumnModel seems to go back to default, and all the columns have the same width

link|improve this question

76% accept rate
2  
btw: improve your accept rate (otherwise it's improbable you get much more answers here :-) – kleopatra Dec 7 '11 at 14:32
@kleopatra your opening bracket ( is not closed ~! :P – Sanjay Dec 7 '11 at 15:57
Why are you using agentsTable when getting the column model? Your table is just called table. Was that a mistake when copying your code over? – BitFiber Dec 8 '11 at 2:32
it was a mistake copying my code – Adi Mor Dec 8 '11 at 8:05
feedback

1 Answer

bet your custom TableModel fires a structureChanged on insert :-) That's incorrect, instead use fireTableRowsInserted().

link|improve this answer
no. it fires fireTableRowsInserted(rowIndex, rowIndex); – Adi Mor Dec 8 '11 at 8:08
@AdiMor - okay, so I lost and the error is somewhere else :-) Show a SSCCE – kleopatra Dec 8 '11 at 8:33
@trashgod - thanks for adding the link! Just removed that ugly grey background again, it's hurting the reading flow (mine, it least :-) – kleopatra Dec 8 '11 at 9:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.