TITLE:JTableのCellEditorにJComboBoxを設定
#navi(../)
*JTableのCellEditorにJComboBoxを設定 [#f57b6c70]
>編集者:[[Terai Atsuhiro>terai]]~
作成日:2005-09-26~
更新日:&lastmod;

#contents

**概要 [#v4c613bd]
JTableのCellEditorにJComboBoxを使用し、リストから値を選択できるようにします。

#screenshot

**サンプルコード [#y53e1620]
 JComboBox cb = new JComboBox(new String[] {"名前0", "名前1", "名前2"});
 cb.setBorder(BorderFactory.createEmptyBorder()); 
 
 TableColumn col = table.getColumnModel().getColumn(1);
 col.setCellEditor(new DefaultCellEditor(cb));
 //col.setCellRenderer(new ComboBoxCellRenderer());

-&jnlp;
-&jar;
-&zip;

**解説 [#k4fd12f0]
上記のサンプルでは、1列目のセルエディタとしてコンボボックスを使うDefaultCellEditorを登録しています。

コンボボックスの余白を0にしておくと、セル内にきれいにぴったり収まります(参考:[[Santhosh Kumar's Weblog : Santhosh Kumar's Weblog>http://www.jroller.com/page/santhosh?entry=tweaking_jtable_editing]])。
-以下は余白を0にしていない場合
>
#screenshot(,screenshot2.png)

セルの表示にもJComboBoxを使用する場合は、例えば以下のようなJComboBoxを継承するセルレンダラーを使用します。

 class ComboBoxCellRenderer extends JComboBox implements TableCellRenderer {
   private static final Color ec = new Color(240, 240, 255);
   private final JTextField editor;
   public ComboBoxCellRenderer() {
     super();
     setEditable(true);
     setBorder(BorderFactory.createEmptyBorder());
 
     editor = (JTextField) getEditor().getEditorComponent();
     editor.setBorder(BorderFactory.createEmptyBorder());
     editor.setOpaque(true);
   }
   public Component getTableCellRendererComponent(JTable table, Object value,
                            boolean isSelected, boolean hasFocus,
                            int row, int column) {
     removeAllItems();
     if(isSelected) {
       editor.setForeground(table.getSelectionForeground());
       editor.setBackground(table.getSelectionBackground());
     }else{
       editor.setForeground(table.getForeground());
       editor.setBackground((row%2==0)?ec:table.getBackground());
     }
     addItem((value==null)?"":value.toString());
     return this;
   }
 }

**参考リンク [#w85587e3]
-[[JTable Examples>http://www.crionics.com/products/opensource/faq/swing_ex/JTableExamples7.html]]
-[[Santhosh Kumar's Weblog : Santhosh Kumar's Weblog>http://www.jroller.com/page/santhosh?entry=tweaking_jtable_editing]]

**コメント [#naf1e6fc]
#comment