2016-08-31 99 views
0

我真的可以使用一些幫助。JavaFX連接組合框

我正在創建具有兩個連接組合框的應用程序,如果我在第一個選擇productCode的第二個應該選擇productName。

這兩個組合框文本框都是爲了搜索目的而過濾的。

我已經設置了setCellFactories像這樣(用於下拉列表呈現的目的)。

cbSifra.setCellFactory((comboBox) -> new ListCell<Product>() { 
     @Override 
     protected void updateItem(Product product, boolean empty) { 
      super.updateItem(product, empty); 

      if (product == null || empty) { 
       setText(null); 
      } else { 
       setText(product.getProductCode()); 
      } 
     } 
    }); 

cbNaziv.setCellFactory((comboBox) -> new ListCell<Product>() { 
     @Override 
     protected void updateItem(Product product, boolean empty) { 
      super.updateItem(product, empty); 

      if (product == null || empty) { 
       setText(null); 
      } else { 
       setText(product.getProductName()); 
      } 
     } 
    }); 

這兩個組合框都實現轉換器,以便在選擇時顯示數據到組合框中。

cbNaziv.setConverter(new StringConverter<Product>() { 
     @Override 
     public String toString(Product product) { 
      if (product == null) { 
       return null; 
      } else { 
       return product.productNameProperty().get(); 
      } 
     } 

     @Override 
     public Product fromString(String productString) 
     { 
      return cbNaziv.getItems().stream().filter(item->productString.equals(item.getProductName())).findFirst().orElse(null); 

     } 
    }); 


    cbSifra.setConverter(new StringConverter<Product>() { 
     @Override 
     public String toString(Product product) { 
      if (product == null) { 
       return null; 
      } else { 
       return product.productCodeProperty().get(); 
      } 
     } 

     @Override 
     public Product fromString(String productString) 
     { 
      return cbSifra.getItems().stream().filter(item ->productString.equals(item.getProductCode())).findAny().orElse(null); 
     } 
    }); 

下拉列表中的過濾是使用監聽器這樣做了textProperty():

cbNaziv.getEditor().textProperty().addListener((obs, oldValue, newValue) -> { 


       cbNaziv.show(); 

       final TextField editor = cbNaziv.getEditor(); 
       final Product selected = cbNaziv.getSelectionModel().getSelectedItem(); 

     /* 
     This needs run on the GUI thread to avoid the error described 
     here: https://bugs.openjdk.java.net/browse/JDK-8081700. 
     */ 

       Platform.runLater(() -> { 

      /* 
      If the no item in the list is selected or the selected item 
      isn't equal to the current input, we refilter the list. 
      */ 
        if (selected == null || !selected.equals(editor.getText())) { 
         filteredProductList.setPredicate(item -> { 
          // We return true for any items that contains the 
          // same letters as the input. We use toUpperCase to 
          // avoid case sensitivity. 

          if (item.getProductName().toUpperCase().contains(newValue.toUpperCase())) { 
           return true; 
          } else { 
           return false; 
          } 
         }); 
        } 
       }); 
      }); 



      cbSifra.getEditor().textProperty().addListener((obs, oldValue, newValue) -> { 


       cbSifra.show(); // Is used to open dropdown list as i start typing 

       final TextField editor = cbSifra.getEditor(); 
       final Product selected = cbSifra.getSelectionModel().getSelectedItem(); 

     /* 
     This needs run on the GUI thread to avoid the error described 
     here: https://bugs.openjdk.java.net/browse/JDK-8081700. 
     */ 

       Platform.runLater(() -> { 

      /* 
      If the no item in the list is selected or the selected item 
      isn't equal to the current input, we refilter the list. 
      */ 

        if (selected == null || !selected.equals(editor.getText())) { 

         filteredProductList.setPredicate(item -> { 
          // We return true for any items that contains the 
          // same letters as the input. We use toUpperCase to 
          // avoid case sensitivity. 

          if (item.getProductCode().toUpperCase().contains(newValue.toUpperCase())) { 
           return true; 
          } else { 
           return false; 
          } 

         }); 
        } 
       }); 
      }); 

我valueProperty聽衆如果選擇值來檢查並填寫一些文本框自己的價值觀或設置它們爲空。

cbSifra.valueProperty().addListener(new ChangeListener<Product>() { 
      @Override 
      public void changed(ObservableValue<? extends Product> observable, Product oldValue, Product newValue) { 

       if (cbSifra.getValue() == null || cbSifra.getValue().getProductName().isEmpty()) 
       { 
        cbNaziv.getSelectionModel().clearSelection(); 
        tfMpCijena.setText(null); 
        tfPopust.setText(null); 

       } else { 


        cbNaziv.setValue(cbSifra.getValue()); 
        cbSifra.setValue(cbNaziv.getValue()); 
        cbNaziv.hide(); 
        tfMpCijena.setText(cbSifra.getValue().getProductRetailPrice().toString()); 
        tfPopust.setText("0"); 
       } 

      } 
     }); 



     cbNaziv.valueProperty().addListener(new ChangeListener<Product>() { 
      @Override 
      public void changed(ObservableValue<? extends Product> observable, Product oldValue, Product newValue) { 

       if (cbNaziv.getValue() == null || cbNaziv.getValue().getProductName().isEmpty()) 
       { 
        cbSifra.getSelectionModel().clearSelection(); 
        tfMpCijena.setText(null); 
        tfPopust.setText(null); 

       } else { 

        cbSifra.setValue(cbNaziv.getValue()); 
        cbSifra.hide(); 
        tfMpCijena.setText(cbNaziv.getValue().getProductRetailPrice().toString()); 
        tfPopust.setText("0"); 
       } 

      } 
     }); 

的問題是:

  • 當我開始打字東西放到它過濾確定任何組合框和 當我從下拉式列表項填滿第二組合框,但 第一組合框編輯重點再次得到並顯示下拉 再次

  • 當我從combobox刪除條目它刪除確定,但其他 組合框值rem (它沒有刪除)

如果你能幫助我,我會非常感激。 在此先感謝。

回答

0

假設兩個ComboBox都是Product類型,您可以使用雙向綁定來確保兩個ComboBoxes的值始終指向同一產品。

cbNaziv.valueProperty().bindBidirectional(cbSifra.valueProperty()); 

使用此應該允許您刪除您的更改偵聽器,並希望能解決您遇到的一些問題。