web-dev-qa-db-ja.com

JComboBoxをJTableに入れる

個々のJComboBoxをJTableの各セルに配置したいと思います。すなわち。 JComboBoxの内容は、各セルで同一ではありません。

基本的に、次のコードを呼び出すだけで、JComboBoxの行をJTableに追加できるようにしたいと思います。誰かアイデアがありますか?ありがとう

JComboBox cb1 = new JComboBox(...);
JComboBox cb2 = new JComboBox(...);
model.addRow(new Object[] {"Row name", cb1, cb2} );

JComboBox cb3 = new JComboBox(...);
JComboBox cb4 = new JComboBox(...);
model.addRow(new Object[] {"Row name 2", cb3, cb4} );

私が見つけることができる最も近いサンプルコードは次のとおりです。ただし、JComboBoxの内容が個々の列で同一である場合に使用します。私が必要とする解決策ではありません。

TableColumn col = table.getColumnModel().getColumn(vColIndex);
col.setCellEditor(new MyComboBoxEditor(values));

どこ

public class MyComboBoxEditor extends DefaultCellEditor {
    public MyComboBoxEditor(String[] items) {
        super(new JComboBox(items));
    }
}
15
Dan

次のコードでJTableを拡張します。

@Override
public TableCellEditor getCellEditor(int row, int column) {
   Object value = super.getValueAt(row, column);
   if(value != null) {
      if(value instanceof JComboBox) {
           return new DefaultCellEditor((JComboBox)value);
      }
            return getDefaultEditor(value.getClass());
   }
   return super.getCellEditor(row, column);
}

これにより、値を取得するコンボボックスごとに一意のJComboBoxセルエディターが作成されます。

9
user74523

これであなたの問題は解決すると確信しています。 .getColumn(int column)でコンボボックスを設定する必要がある列に言及します

private void addComboToTable(JComboBox combo) {
    TableColumn gradeColumn = YourTable.getColumnModel().getColumn(0);
    JComboBox comboBox = combo;
    comboBox.removeAllItems();
    try {
        comboBox.addItem("Item 1");
        comboBox.addItem("Item 2");
        comboBox.addItem("Item 3");
    } catch (NullPointerException e) {
    } catch (Exception e) {
        e.printStackTrace();
    }
    gradeColumn.setCellEditor(new DefaultCellEditor(comboBox));
}
3
Mujahid

JTableには、列ごとに複数のエディターを含める機能がないため、JComboBoxのコンテンツは行の選択ごとに同一にレンダリングされます。行の追加選択をサポートするには、JTableクラスを拡張する必要があります。

この記事はそれを非常によく説明しています: http://www.javaworld.com/javaworld/javatips/jw-javatip102.html

2
Ivar

CellEditorに加えて、cellRendererを実行してセル内のコンボボックスをペイントする必要があります。これを見てください。

 public void example(){  

      TableColumn tmpColum =table.getColumnModel().getColumn(1);
      String[] DATA = { "Data 1", "Data 2", "Data 3", "Data 4" };
      JComboBox comboBox = new JComboBox(DATA);

      DefaultCellEditor defaultCellEditor=new DefaultCellEditor(comboBox);
      tmpColum.setCellEditor(defaultCellEditor);
      tmpColum.setCellRenderer(new CheckBoxCellRenderer(comboBox));
      table.repaint();
   }


/**
   Custom class for adding elements in the JComboBox.
*/
class CheckBoxCellRenderer implements TableCellRenderer {
        JComboBox combo;
        public CheckBoxCellRenderer(JComboBox comboBox) {
            this.combo = new JComboBox();
            for (int i=0; i<comboBox.getItemCount(); i++){
                combo.addItem(comboBox.getItemAt(i));
            }
        }
        public Component getTableCellRendererComponent(JTable jtable, Object value, boolean isSelected, boolean hasFocus, int row, int column) {
            combo.setSelectedItem(value);
            return combo;
        }
    }
2
Adrian

オーバーライドする必要があります:

Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected, boolean hasFocus, int row, int column)

... TableCellEditor内。このメソッドに渡される値は、JComboBoxに入力できる値です。つまり、その特定のセルの「値」は、コレクションに変換できるものである必要があります。オブジェクトのリストである可能性もあれば、JComboBoxにすることができるフィールドを持つPOJOである可能性もあります。

したがって、MyComboBoxEditorを編集してそのメソッドをオーバーライドし、モデルを変更して、実際に他のいくつかのオブジェクトを表すオブジェクトを許可するだけです。

2
@Override
public TableCellEditor getCellEditor(int row, int column) {
   Object value = super.getValueAt(row, column);
   if(value != null) {
      if(value instanceof JComboBox) {
           return new DefaultCellEditor((JComboBox)value);
      }
            return getDefaultEditor(value.getClass());
   }
   return super.getCellEditor(row, column);
}

次に、toStringからJComboBoxメソッドをオーバーライドします。

1
Rogério

このページ は役立つかもしれませんが、列のすべてのセルに同じコンボボックスを持つように制限されているようです。

0
Luke Woodward

TableCellEditor getCellEditor(int row、int column)メソッドをオーバーライドするには、JTableのサブクラスを作成する必要があります。

これにより、任意の行と列の組み合わせに対して任意のセルエディタを設定できます。デフォルトの方法は、列全体のセルエディタを設定することです。

(getCellRendererをオーバーライドして、個々のセルレンダラーを設定することもできます。)

0
Aivar