簡體   English   中英

JTable 中特定單元格中的 JComboBox

[英]A JComboBox in a specific cell in JTable

我想知道如何在 JTable 的特定單元格中設置 JComboBox。 我見過有人使用TableColumn setCellEditor(new DefaultCellEditor(comboBox))

但這是針對整個專欄的,我想要一個特定的單元格。 所以也許我應該做一個適合我需要的自定義TableCellEditor ,但我對如何做有點迷茫......

這樣做的目的是管理參數過濾器。 有兩種過濾器:

  1. 比較兩個值的值,例如:氣球數 > 5
  2. 一個會說是一個值在一個值范圍內,例如:參數名稱在 {"one", "two", "three", "seven"} 內。

我的 JTable 的屏幕截圖:

在此處輸入圖像描述

正如我們在圖片中看到的,當有“比較器”“在其中”時,我們需要在cell[0][2]中使用JComboBox來選擇一組完整字段中的范圍值。 cell[1][2]不需要JComboBox ,而只是一個可編輯的單元格。

我希望我已經清楚並感謝您的幫助。

編輯:我能夠顯示一個 JComboBox 只是為了實現,我不能 select 上面有多個值。 所以現在我試圖顯示一個 JList 而不是 ComboBox。 但是當我點擊單元格時,沒有顯示JList,我不知道為什么。 這是我的代碼:

JTable tableParametersFilter = new JTable(modelParametersFilter){
    //  Determine editor to be used by row
    public TableCellEditor getCellEditor(int row, int column)
    {
        int modelColumn = convertColumnIndexToModel( column );
        int modelRow = convertRowIndexToModel( row );
        Parameter_Filter pf =  view.listParameter_Filter.get(modelRow);
        if(modelColumn == 2 && pf instanceof Parameter_Filter_To_List_Of_Fields) {
            Parameter_Filter_To_List_Of_Fields pftlof = (Parameter_Filter_To_List_Of_Fields)pf;
            
            JList<String> list = new JList<String>(pftlof.list_of_fields_total_names);
            list.setSelectionMode(ListSelectionModel.MULTIPLE_INTERVAL_SELECTION );
            list.setLayoutOrientation(JList.VERTICAL_WRAP);
            list.setVisibleRowCount(-1);
            
            return new TableCellEditor() {
                @Override
                public boolean stopCellEditing() {
                    return false;
                }
                @Override
                public boolean shouldSelectCell(EventObject anEvent) {
                    return false;
                }
                @Override
                public void removeCellEditorListener(CellEditorListener l) {
                }
                @Override
                public boolean isCellEditable(EventObject anEvent) {
                    return true;
                }
                @Override
                public Object getCellEditorValue() {
                    return list.getSelectedValuesList().toString();
                }
                @Override
                public void cancelCellEditing() {
                }
                @Override
                public void addCellEditorListener(CellEditorListener l) {
                }
                @Override
                public Component getTableCellEditorComponent(JTable table, Object value, boolean isSelected, int row, int column) {
                    return list;
                }
            };
        }
        return super.getCellEditor(row, column);
    }
};

有什么建議么?

我已經解決了我的問題。 我無法在Jtable的 Cell 上添加多項選擇JComboBox或可顯示的JList 相反,我使用了顯示JListJOptionPane 這是代碼:

tableParametersFilter.addMouseListener(new MouseAdapter() {
    public void mouseClicked(MouseEvent e) {
        JTable target = (JTable)e.getSource();
        int row = target.getSelectedRow();
        int column = target.getSelectedColumn();
        if(column == 2){
            Parameter_Filter pf = view.listParameter_Filter.get(row);
            if(pf instanceof Parameter_Filter_To_List_Of_Fields) {
                Parameter_Filter_To_List_Of_Fields pftlof = (Parameter_Filter_To_List_Of_Fields) pf;
                JList<String> jlist = new JList<String>(pftlof.list_of_fields_total_names);
                String StringOfIntArray = (String) tableParametersFilter.getValueAt( row, 2);
                int[] list_parameter_id = Statique.StringOfIntArrayToIntegerArray(StringOfIntArray);
                if(list_parameter_id.length < jlist.getModel().getSize()) {
                    int[] list_places = pftlof.getPlaceOfParameters(list_parameter_id);
                    for(int i = 0; i < list_places.length; i++) {
                        jlist.setSelectedIndices(list_places);
                    }
                }
                
                JScrollPane scrollPane = new JScrollPane(jlist);
                scrollPane.setPreferredSize( new Dimension( 500, 500 ) );
                JOptionPane.showMessageDialog( 
                        null, scrollPane, "Multi-Select Example", JOptionPane.PLAIN_MESSAGE);
                int[] SelectedIndices = jlist.getSelectedIndices();
                Integer[] listParametersId = new Integer[SelectedIndices.length];
                for(int i = 0; i < SelectedIndices.length; i++) {
                    int id = pftlof.list_of_fields_Total[SelectedIndices[i]].id;
                    try {
                        Parameter p = Parameter.getParameter(
                                id, 
                                Parameter_Filter_To_List_Of_Fields.getTotal_Parameter_In_Parameter_Filter_To_List_Of_Fields());
                        listParametersId[i] = p.id;
                    } catch (NoSuchFieldException e1) {
                        e1.printStackTrace();
                    }
                }
                System.out.println(Arrays.toString(listParametersId));
                tableParametersFilter.setValueAt(Arrays.toString(listParametersId), row, 2);
            }
        }
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM