JComboBox in TableCellEditor remember last selected value among different rows and even different TableModels. For example select a value on one row, then go to another row, start cell editing and JComboBox will have as its current value last select value on the previos row.

How can it fixed?

link|improve this question

70% accept rate
1  
sounds unusual (as in: the problem is in the code you are not showing), how about a small runnable example demonstrating the problem? – kleopatra Aug 24 '11 at 15:17
feedback

1 Answer

up vote 3 down vote accepted

Set the value in the getTableCellEditorComponent(..) method.

Example:

public static void main(String... args) {

    JFrame frame = new JFrame("Test");

    JTable table = new JTable(10, 2);
    JComboBox box = new JComboBox(new String[] {"A", "B", "C"});
    table.setDefaultEditor(Object.class, new DefaultCellEditor(box) {

        @Override
        public Component getTableCellEditorComponent(JTable table,
                Object value, boolean isSelected, int row, int column) {
            return super.getTableCellEditorComponent(
                        table, 
                        table.getValueAt(Math.max(row-1, 0), column), 
                        isSelected, 
                        row, 
                        column);
        }
    });

    frame.add(table);

    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    frame.setSize(400, 300);
    frame.setVisible(true);
}
link|improve this answer
You didn't even try it, did? because it's plain wrong - editors (nor renderers) are not supposed to second-guessing the caller's value. – kleopatra Aug 24 '11 at 15:16
@kleopatra: Sure the requirement is funny but I tried it... – dacwe Aug 24 '11 at 15:21
funny indeed - and got what (when trying)? BTW, could you reproduce the original problem? If so, with which jdk version (I faintly remember some weird init bugs around the time of 1.2 ;-) – kleopatra Aug 24 '11 at 15:26
Nono, I don't think he/she is talking about a "bug". He/she wants the behavior to be like this... – dacwe Aug 24 '11 at 15:41
ahh ... reading and reading again, could be. What a weird requirement indeed ;-) – kleopatra Aug 25 '11 at 8:17
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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