Adding values to selected javafx ComboBoxTableCell dynamically
问题 I have a TableView with two columns named Product and Brand. A Product can be of different Brands. Eg. TV has different brands like Samsung, Sony etc. I am showing Brands of a Product in ComboBoxes. This is how i am adding a ComboBoxTableCell for my Brand Column. ObservableList<String> catList = FXCollections.observableArrayList(); categoryCol.setCellFactory(t -> { ComboBoxTableCell comboCell = new ComboBoxTableCell(catList); return comboCell; }); contactTable.getColumns().add(categoryCol);