JTable JComboBox SetEditable无法正常工作

时间:2014-12-17 02:24:30

标签: java swing jtable jcombobox tablecelleditor

我想让一个可编辑的JComboBox在表格中工作,但到目前为止,没有运气。在表格中的单元格内操作时,设置cbo.setEditable(true)似乎无效。有什么我想念的吗?请帮忙。

演示问题的示例代码:

public class ComboBoxTest {

    private JFrame frame;
    private JTable table;
    private JComboBox<?> cboFrm = null;
    private JComboBox<?> cboTbl = null;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {

        EventQueue.invokeLater(new Runnable() {
            public void run() {
                try {
                    ComboBoxTest window = new ComboBoxTest();
                    window.frame.setVisible(true);
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }
        });
    }

    /**
     * Create the application.
     */
    public ComboBoxTest() {
        initialise();
    }

    /**
     * Initialise the contents of the frame.
     */
    private void initialise() {
        frame = new JFrame();
        frame.setBounds(100, 100, 455, 233);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().setLayout(null);

        String[] cboData = { "tspn", "tblspn", "gram", "Kg" };

        cboFrm = new JComboBox<String>(cboData);
        cboFrm.setBounds(10, 26, 86, 20);
        cboFrm.setEditable(true);
        frame.getContentPane().add(cboFrm);

        JScrollPane scrollPane = new JScrollPane();
        scrollPane.setBounds(10, 57, 414, 127);
        frame.getContentPane().add(scrollPane);

        String columnNames[] = { "Qty", "Measure", "Ingrediant" };
        // @formatter:off
        Object[][] tableData =
            {
                { 1, "Kg", "Sugar" },
                { 1, "pinch", "Salt" },
                { 2, "handfuls", "Peanuts" },
                { 1, "Litre", "Milk"}
            };
        // @formatter:on
        table = new JTable(tableData, columnNames);
        cboTbl = new JComboBox<String>(cboData);
        cboTbl.setEditable(true);
        table.getColumnModel().getColumn(1)
                .setCellEditor(new DefaultCellEditor(cboTbl));
        scrollPane.setViewportView(table);

    }

}

2 个答案:

答案 0 :(得分:0)

使用此输出工作正常:

enter image description here

答案 1 :(得分:0)

回答我自己的问题。

JComboBox与JTable交互的方式似乎有一个错误。解决方法是在更改新文本后按“输入”。从表格中删除JComboBox单元格不起作用,这与标准文本单元格的行为不一致。

有一个可以追溯到1999 - 2001年的错误报告,据说它已被修复,但它再次浮出水面。请参阅以下链接:

http://bugs.java.com/bugdatabase/view_bug.do?bug_id=4275046